Skip to content

Instantly share code, notes, and snippets.

@DenverDias
Last active August 29, 2015 13:59

Revisions

  1. DenverDias renamed this gist Apr 16, 2014. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. DenverDias revised this gist Apr 16, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -3,4 +3,4 @@ http.createServer(function (request,response) {
    response.writeHead(200, {'Content-Type': 'text/plain'});
    response.end('Hello World!\n');
    }).listen(8000)
    console.log("Web Server running at http://127.0.0.1:8000")
    console.log('Web Server running at http://127.0.0.1:8000');
  3. DenverDias created this gist Apr 16, 2014.
    6 changes: 6 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    var http = require('http');
    http.createServer(function (request,response) {
    response.writeHead(200, {'Content-Type': 'text/plain'});
    response.end('Hello World!\n');
    }).listen(8000)
    console.log("Web Server running at http://127.0.0.1:8000")