Skip to content

Instantly share code, notes, and snippets.

@robraux
Created October 3, 2014 14:42
Show Gist options
  • Save robraux/954703b4d6c27e387974 to your computer and use it in GitHub Desktop.
Save robraux/954703b4d6c27e387974 to your computer and use it in GitHub Desktop.
runForever.js
var http = require('http');
http.createServer(function (req, res) {
console.log("Got the request, but I'm not going to do anything about it, hahahahah");
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment