Skip to content

Instantly share code, notes, and snippets.

@SemanticallyNull
Last active August 29, 2015 14:09
Show Gist options
  • Select an option

  • Save SemanticallyNull/0639e871a741a6301f1c to your computer and use it in GitHub Desktop.

Select an option

Save SemanticallyNull/0639e871a741a6301f1c to your computer and use it in GitHub Desktop.
var http = require('http');
var server = http.createServer(function(req, res) {
res.writeHead(200);
res.end('Hello Http');
});
server.listen(process.env.PORT || 8080);
{
"name": "test",
"description": "test",
"version": "0.0.1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment