Skip to content

Instantly share code, notes, and snippets.

@1beb
Last active December 31, 2015 09:49
Show Gist options
  • Save 1beb/7969186 to your computer and use it in GitHub Desktop.
Save 1beb/7969186 to your computer and use it in GitHub Desktop.
Basic node.js server that says "Hello Http"
var http = require('http');
var server = http.createServer(function(req, res) {
res.writeHead(200);
res.end('Hello Http');
});
server.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment