Skip to content

Instantly share code, notes, and snippets.

@adam-hert
Created October 17, 2016 20:58
Show Gist options
  • Save adam-hert/7354632f0a9a63440dc75d85e179ff3e to your computer and use it in GitHub Desktop.
Save adam-hert/7354632f0a9a63440dc75d85e179ff3e to your computer and use it in GitHub Desktop.
var tv = require('traceview');
tv.traceMode = 'always';
// Load the http module to create an http server.
var http = require('http');
// Configure 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("Hello World\n");
});
// Listen on port 8000
server.listen(8000);
// Put a friendly message on the terminal
console.log("Server running at localhost:8000/");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment