Commit 9bc5b6f8 authored by Marak Squires's avatar Marak Squires

removed extra self, updated colors requirement, bumped to version 0.1.3

parent c8dd8c4e
...@@ -29,9 +29,7 @@ var sys = require('sys'), ...@@ -29,9 +29,7 @@ var sys = require('sys'),
events = require('events'); events = require('events');
exports.httpProxy = function () { exports.httpProxy = function () {
var self = this;
this.emitter = new(events.EventEmitter); this.emitter = new(events.EventEmitter);
// If we were passed more than two arguments, // If we were passed more than two arguments,
// assume the first two are request and response. // assume the first two are request and response.
if(arguments.length >= 2) { if(arguments.length >= 2) {
......
{ {
"name": "http-proxy", "name": "http-proxy",
"description": "A full-featured http reverse proxy for node.js", "description": "A full-featured http reverse proxy for node.js",
"version": "0.1.2", "version": "0.1.3",
"author": "Charlie Robbins <charlie.robbins@gmail.com>", "author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [ "contributors": [
{ "name": "Marak Squires", "email": "marak.squires@gmail.com" } { "name": "Marak Squires", "email": "marak.squires@gmail.com" }
], ],
"keywords": ["reverse", "proxy", "http"], "keywords": ["reverse", "proxy", "http"],
"dependencies": { "dependencies": {
"colors": ">= 0.0.1" "colors": ">= 0.0.3"
}, },
"main": "./lib/node-http-proxy", "main": "./lib/node-http-proxy",
"scripts": { "test": "vows" }, "scripts": { "test": "vows" },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment