Skip to content

Instantly share code, notes, and snippets.

@jsha
Created October 14, 2014 13:20
Show Gist options
  • Save jsha/6e88d507132c5e52d35d to your computer and use it in GitHub Desktop.
Save jsha/6e88d507132c5e52d35d to your computer and use it in GitHub Desktop.
Socket doesn't keepalive
var request = require('request');
function go() {
request('https://api.twitter.com/robots.txt', function (error, response, body) {
console.log(body);
})
}
setInterval(go, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment