Skip to content

Instantly share code, notes, and snippets.

@davidtucker
Last active December 28, 2015 08:09
Show Gist options
  • Save davidtucker/7469420 to your computer and use it in GitHub Desktop.
Save davidtucker/7469420 to your computer and use it in GitHub Desktop.
Node Example 1 - Simple Web Server
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