-
-
Couldn't load subscription status.
- Fork 21.3k
Closed
Labels
Description
I've been working on a fast querystring parser for Node.js and saw that Express.js is using the native querystring module. As of right now, fast-querystring is 40% faster than querystring.
Line 24 in bf4c3ee
| var querystring = require('querystring'); |
Here's an example of a benchmark of Nest.js with replacing fast-querystring and having a 25% op/sec increase with an old version of fast-querystring. - nestjs/nest#10248 (comment)
I'd be happy to open a pull request, but before that, I wanted to create an issue and have a discussion about it.
micalevisk and TheDevMinerTV