Skip to content

Instantly share code, notes, and snippets.

@spasiu
Created February 29, 2016 20:44
Show Gist options
  • Select an option

  • Save spasiu/74dea402f8d613544f5a to your computer and use it in GitHub Desktop.

Select an option

Save spasiu/74dea402f8d613544f5a to your computer and use it in GitHub Desktop.
node server
require('http').createServer(function(request, response) {
request.pipe(process.stdout)
response.end();
}).listen(8000, function() {
console.log('Server listening on: http://localhost:%s', '8000');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment