-
-
Notifications
You must be signed in to change notification settings - Fork 152
Open
Labels
Description
The HTTP parser we're using right now is built in into Node.js but it's a part of Node's public API. Relying on it potentially dangerous as it might yield different behaviors across Node.js versions.
Instead, we can use the WASM build of llhttp, which is also the HTTP parser used by Undici:
I've heard that Node's HTTPParser uses llhttp under the hood so, hopefully, this refactoring isn't that difficult.
Reactions are currently unavailable