diff --git a/README.md b/README.md index 8167300..4b9d4d5 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Let's suppose you were running multiple http application servers, but you only w var http = require('http'), httpProxy = require('http-proxy'); - httpProxy.createServer('9000', 'localhost').listen(8000); + httpProxy.createServer(9000, 'localhost').listen(8000); http.createServer(function (req, res){ res.writeHead(200, {'Content-Type': 'text/plain'}); @@ -54,7 +54,7 @@ see the [demo](http://github.com/nodejitsu/node-http-proxy/blob/master/demo.js) // create a proxy server with custom application logic httpProxy.createServer(function (req, res, proxy) { // Put your custom server logic here - proxy.proxyRequest('9000', 'localhost', req, res); + proxy.proxyRequest(9000, 'localhost', req, res); }).listen(8000); http.createServer(function (req, res){ diff --git a/package.json b/package.json index 1aad1fd..07b9a93 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,15 @@ { "name": "http-proxy", "description": "A full-featured http reverse proxy for node.js", - "version": "0.1.5", + "version": "0.1.6", "author": "Charlie Robbins ", "contributors": [ { "name": "Marak Squires", "email": "marak.squires@gmail.com" } ], + "repository": { + "type": "git", + "url": "http://github.com/nodejitsu/node-http-proxy.git" + }, "keywords": ["reverse", "proxy", "http"], "dependencies": { "colors": ">= 0.3.0"