Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/felixge/node-multipart-parser
A fast and streaming multipart parser.
https://github.com/felixge/node-multipart-parser
Last synced: about 2 months ago
JSON representation
A fast and streaming multipart parser.
- Host: GitHub
- URL: https://github.com/felixge/node-multipart-parser
- Owner: felixge
- License: mit
- Created: 2011-10-02T09:14:31.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2015-02-18T07:53:27.000Z (almost 10 years ago)
- Last Synced: 2024-10-11T15:18:48.671Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 279 KB
- Stars: 30
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: Readme.md
- License: License
Awesome Lists containing this project
README
# multipart-parser
A fast and streaming multipart parser.
## Is it any good?
No, this is still being developed.
## Is it fast?
Yes. According to the benchmark suite shipped with this parser, it is on par
with existing implementations, and can easily exceed typical disk/storage
throughputs.```
$ node --version
v0.4.12
$ node benchmark/benchmark.js -r 100
Options:
Entity Size : 10 mb
Chunk Size : 32 kb
Runs : 100
Iterations per run : 10....................................................................................................
Benchmark took: 33.8 secondsformidable: 740.47 mb/sec (95% of 1000 iterations)
multipart_parser: 846.75 mb/sec (95% of 1000 iterations)
``````
$ node --version
v0.5.10-pre
$ node benchmark/benchmark.js -r 100
Options:
Entity Size : 10 mb
Chunk Size : 32 kb
Runs : 100
Iterations per run : 10....................................................................................................
Benchmark took: 33.4 secondsformidable: 775.19 mb/sec (95% of 1000 iterations)
multipart_parser: 934.58 mb/sec (95% of 1000 iterations)
```## Is it secure?
Blah.
## Is it compliant?
Blah.
## Is it user friendly?
Blah.
## License
MIT License.