Skip to content

Instantly share code, notes, and snippets.

@mabel
Created April 10, 2018 18: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 mabel/43d6e3cf5be2b9a7f5b69c1a787d18d1 to your computer and use it in GitHub Desktop.
Save mabel/43d6e3cf5be2b9a7f5b69c1a787d18d1 to your computer and use it in GitHub Desktop.
Simpliest http-server via NodeJS
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(3000);
console.log('Server running at http://localhost:3000/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment