Skip to content

Instantly share code, notes, and snippets.

@bpaquet
Last active August 29, 2015 14:11
Show Gist options
  • Save bpaquet/99aba06603ccebd0c093 to your computer and use it in GitHub Desktop.
Save bpaquet/99aba06603ccebd0c093 to your computer and use it in GitHub Desktop.
var r = require('http').request({host: 'localhost', port: 8765, path: '/'}, function(res) {
console.log('res');
res.on('end', function() {
console.log('end');
});
});
r.end();
setTimeout(function() {
}, 100000);
HTTP/1.1 204 No Content
Server: nginx
Date: Sat, 13 Dec 2014 22:44:32 GMT
Content-Type: text/html; charset=iso-8859-1
Content-Length: 0
Connection: close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment