Skip to content

Instantly share code, notes, and snippets.

@michealbenedict
Created May 14, 2011 09:01
Show Gist options
  • Save michealbenedict/972056 to your computer and use it in GitHub Desktop.
Save michealbenedict/972056 to your computer and use it in GitHub Desktop.
vmd.nodester.com not running
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