Skip to content

Instantly share code, notes, and snippets.

@ThisIsMissEm
Forked from NakedMoleRatScientist/server.js
Created June 13, 2010 19:22
Show Gist options
  • Save ThisIsMissEm/436922 to your computer and use it in GitHub Desktop.
Save ThisIsMissEm/436922 to your computer and use it in GitHub Desktop.
var net = require('net');
var server = net.createServer(function (stream) {
stream.setTimeout(0);
});
server.listen(7000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment