Last active
January 27, 2018 05:13
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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