Skip to content

Instantly share code, notes, and snippets.

@rich-97
Created February 7, 2017 19:05
Show Gist options
  • Save rich-97/37a0b7bbc9bfff12b0b8066e281cc2fe to your computer and use it in GitHub Desktop.
Save rich-97/37a0b7bbc9bfff12b0b8066e281cc2fe to your computer and use it in GitHub Desktop.
A small server with nodejs in four lines.
require('http').createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World!\n');
}).listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment