Created
April 26, 2013 17:34
-
-
Save geek/5468931 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Middle tier (similulates inbound and outbound traffic) | |
// Load modules | |
var Http = require('http'); | |
setInterval(function () { | |
Http.request({ port: 9000 }).end(); | |
}, 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment