busboy
busboy copied to clipboard
A streaming parser for HTML form data for node.js
To avoid including `test` in the package. Docs : https://docs.npmjs.com/files/package.json#files
As we talked about previously, this commit adds any additional multipart headers as an optional record type parameter.
Let FileStream inherits fs.ReadStream to support bytesRead property like this: https://github.com/mscdex/busboy/issues/173 ``` busboy.on('file', function(fieldname, file, filename, encoding, mimetype) { const fs = require('fs') const ws = fs.createWriteStream('busboy.txt') const ps =...
Hi. I added support for fieldNameSize and corresponding test parameters. Kept the 100 byte default, as specified by the documentation. This way if anyone says busboy broke their implementation, well,...
Hi @mscdex 👋 First, thank you for developing and maintaining `busboy`, this is a great library 👍 In the `README` documentation, all properties of the `info` object are marked as...
I am trying to upload some images to my cloud storage. I am using form data to send the data down to the cloud function. The data arrives correctly, but...
I found that busboy's FileStream inherits ReadableStream, so FileStream is missing bytesRead. Could `FileStream` inherits `fs.ReadStream` to support `bytesRead` property like this: ``` busboy.on('file', function(fieldname, file, filename, encoding, mimetype) {...
So I need some additional headers from multipart data (specifically a generated Content-MD5 header) and was wondering if you guys would be alright with a pull request adding this feature....
We have some sites that are getting hammered with exploit code looking for a Tiny MCE exploit. The exploit keeps trying to send a POST request to routes that don't...
There is no change log associated with this project. https://keepachangelog.com/en/1.0.0/