Skip to content

Instantly share code, notes, and snippets.

@patrickandre
Created January 19, 2017 16:41
Show Gist options
  • Select an option

  • Save patrickandre/0f508e50cab66d61c61e1e3888e9cc47 to your computer and use it in GitHub Desktop.

Select an option

Save patrickandre/0f508e50cab66d61c61e1e3888e9cc47 to your computer and use it in GitHub Desktop.

Revisions

  1. patrickandre created this gist Jan 19, 2017.
    10 changes: 10 additions & 0 deletions GA http
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    const http = require('http');

    const server = http.createServer(function(request, response) {
    response.writeHead(200, {"Content-Type": "text/html"});
    response.write('<html>Hello World</html>');
    response.end();
    });

    server.listen(5000);
    console.log('Listening on port 5000');