Skip to content

Instantly share code, notes, and snippets.

@fsvehla
Created October 11, 2012 12:51
Show Gist options
  • Save fsvehla/3872081 to your computer and use it in GitHub Desktop.
Save fsvehla/3872081 to your computer and use it in GitHub Desktop.
var http = require('http');
var server = http.createServer(function (req, res) {
res.end('hullo');
});
server.listen(1250, function () {
console.log('Listening on 1250');
});
server.listen(1251, function () {
console.log('Listening on 1251');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment