Skip to content

Instantly share code, notes, and snippets.

@wpalmer
Last active April 21, 2016 23:45
Show Gist options
  • Save wpalmer/ac49cd246efe33e4b8468255eadb3af0 to your computer and use it in GitHub Desktop.
Save wpalmer/ac49cd246efe33e4b8468255eadb3af0 to your computer and use it in GitHub Desktop.
// https://nodejs.org/api/http.html#http_http_request_options_callback
var req = http.request(options);
req.end();
req.on('upgrade', (res, socket, upgradeHead) => {
console.log('got upgraded!');
socket.end();
process.exit(0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment