Skip to content

Instantly share code, notes, and snippets.

@da-n
Last active December 17, 2015 22:19
Show Gist options
  • Save da-n/5681425 to your computer and use it in GitHub Desktop.
Save da-n/5681425 to your computer and use it in GitHub Desktop.
NodeJS: Basic App #snippet
var http = require('http');
server = http.createServer(function(req, res){
res.writeHead(200, {"Content-Type": "text/html"});
res.write("<html><body><h1>Hello, World!</h1></body></html>");
res.end();
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment