Created
May 14, 2011 09:01
-
-
Save michealbenedict/972056 to your computer and use it in GitHub Desktop.
vmd.nodester.com not running
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http'); | |
http.createServer(function (req, res) { | |
res.writeHead(200, {'Content-Type': 'text/plain'}); | |
res.end('Hello World\nApp (r-test) is running..'); | |
}).listen(9974); | |
/* | |
nodester info Gathering information about: vmd | |
nodester info vmd on port 9974 running: true (pid: 15464) | |
nodester info appfile: server.js | |
*/ | |
/* logs | |
nodester info Showing logs for: vmd | |
Munging require paths.. | |
Globallizing Buffer | |
Reading file... | |
Nodester wrapped script starting (15447) at Sat, 14 May 2011 08:55:47 GMT | |
[INFO] Nodester listening on port: 9974 | |
*/ | |
/* | |
vmd.nodester.com returns no data recieved | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment