From d5b9ba7180376b8a67b9cbfebe9acf7399cab3ed Mon Sep 17 00:00:00 2001 From: Ben Atkin Date: Tue, 17 May 2011 13:19:15 -0600 Subject: [PATCH] don't highlight non-javascript as javascript --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ba0f940f..06198caaf 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,12 @@ Let's suppose you were running multiple http application servers, but you only wanted to expose one machine to the internet. You could setup node-http-proxy on that one machine and then reverse-proxy the incoming http requests to locally running services which were not exposed to the outside network. ### Installing npm (node package manager) -``` js +``` curl http://npmjs.org/install.sh | sh ``` ### Installing node-http-proxy -``` js +``` npm install http-proxy ``` @@ -299,7 +299,7 @@ server.on('upgrade', function(req, socket, head) { If you have a suggestion for a feature currently not supported, feel free to open a [support issue][6]. node-http-proxy is designed to just proxy http requests from one server to another, but we will be soon releasing many other complimentary projects that can be used in conjunction with node-http-proxy. ## Run Tests -``` js +``` vows test/*-test.js --spec vows test/*-test.js --spec --https ```