Skip to content

Instantly share code, notes, and snippets.

@yagamicoder
Created September 23, 2016 00:20
Show Gist options
  • Save yagamicoder/8cc4bf3340eed10578b20b0353750276 to your computer and use it in GitHub Desktop.
Save yagamicoder/8cc4bf3340eed10578b20b0353750276 to your computer and use it in GitHub Desktop.
Node.js server running
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Yay, my first node server. Node.js is uber awesome.');
}).listen(9090, '127.0.0.1');
console.log('Server running at http://127.0.0.1:9090/node/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment