Skip to content

Instantly share code, notes, and snippets.

@remy
Created April 7, 2014 10:52
Show Gist options
  • Save remy/10018220 to your computer and use it in GitHub Desktop.
Save remy/10018220 to your computer and use it in GitHub Desktop.
var app = require('http').createServer(function (req, res) {
res.end('ok');
app.close();
}).listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment