Skip to content

Instantly share code, notes, and snippets.

@timothyshort
Last active January 27, 2018 05:13
Show Gist options
  • Save timothyshort/aa4fc3ab4718ce6dc6ee4fd628afb65f to your computer and use it in GitHub Desktop.
Save timothyshort/aa4fc3ab4718ce6dc6ee4fd628afb65f to your computer and use it in GitHub Desktop.
Sample NodeJS application that can be deployed to a web server with NodeJS installed
var http = require('http');
// Configure our HTTP server to respond with Hello World to all requests.
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("This is my Node JS app");
});
// Listen on port 8666, IP defaults to 127.0.0.1
server.listen(8666);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment