Skip to content

Instantly share code, notes, and snippets.

@robertklep
Last active July 19, 2017 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertklep/068272f103e8cc9f09f47c3be8ca08aa to your computer and use it in GitHub Desktop.
Save robertklep/068272f103e8cc9f09f47c3be8ca08aa to your computer and use it in GitHub Desktop.
...
let server = app.listen(4433);
server.on('checkContinue', (req, res) => {
res._writeRaw('HTTP/1.1 100 Continue\r\nFoo: bar\r\n\r\n');
res._sent100 = true;
server.emit('request', req, res);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment