Skip to content

Instantly share code, notes, and snippets.

@kriszyp
Created June 15, 2010 20:15
Show Gist options
  • Save kriszyp/439667 to your computer and use it in GitHub Desktop.
Save kriszyp/439667 to your computer and use it in GitHub Desktop.
var server = require("http").createServer(function(request, response){
});
var nodes = require("./multi-node").listen({
port: 80,
nodes: 4
}, server);
nodes.addListener("node", function(stream){
stream.write("hello");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment