Skip to content

Instantly share code, notes, and snippets.

@imkost
Created November 2, 2016 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imkost/7e49e0117d9cfa6a5a51892dd90ba279 to your computer and use it in GitHub Desktop.
Save imkost/7e49e0117d9cfa6a5a51892dd90ba279 to your computer and use it in GitHub Desktop.
const http = require('http');
const PORT = 4000;
http.createServer(server).listen(PORT);
function server(req, res) {
res.end('Hello, dude');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment