Created
September 18, 2011 06:01
-
-
Save gjohnson/1224790 to your computer and use it in GitHub Desktop.
HTTP Server - NCDEVCON
This file contains 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'); | |
var server = http.createServer(function(req, res) { | |
res.writeHead(200, { 'Content-type': 'text/plain' }); | |
res.write('Hello'); | |
res.end('NCDevCon'); | |
}); | |
server.listen(8000); | |
console.log('running on: %j', server.address()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment