Skip to content

Instantly share code, notes, and snippets.

View carstenschwede's full-sized avatar

Carsten Schwede carstenschwede

View GitHub Profile
var cluster = require('cluster');
if (cluster.isMaster) {
return require('os').cpus().forEach(cluster.fork);
}
require('http').createServer(function(req, res) {
res.end("hello world\n");
}).listen(8000);