Last active
December 28, 2015 08:09
-
-
Save davidtucker/7469420 to your computer and use it in GitHub Desktop.
Node Example 1 - Simple Web Server
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'); | |
http.createServer(function (req, res) { | |
res.writeHead(200, {'Content-Type': 'text/plain'}); | |
res.end('The Web Server is Running\n'); | |
}).listen(8095); | |
console.log('Server Running on Port 8095'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment