multiparty
multiparty copied to clipboard
A node.js module for parsing multipart-form data requests which supports streams2
Otherwise it fails with node 18, which strictly expects CRLF for lines breaks in HTTP headers.
I thought that I would add it because it was not promise while using it. What do you think?
Provide a setting to enable single file upload or multiple file upload (i.e: maxFiles: x, where x is a number)
busboy solves this issue: https://github.com/mscdex/busboy#busboy-methods
According https://tools.ietf.org/html/rfc2387#section-4 on `multipart/related` `content-disposition` header is optional. Library only grab a file if `content-disposition` exists. I think library should be able to handle files without this optional header and...
Hello, I'm using express-proxy to proxy a form post to s3. I want to add a field to the form. (The signed signature). But I do not have a full...
Hi, I am using multiparty to read and parse files having a specific data layout. In the event handler of form.on('part', function(...) { }), I am calling my own internal...
It would be good to have something like `part.get(name: string)` (express-style) or `part.header(name: string)` (more logical, IMO) to be able to get HTTP headers using case-insensitive search. Currently, the only...
so you could set this(fileChmodPerms) property in the object that is being sent to initialize this module {..... , fileChmodPerms: 600 }, in order to prevent files to be executed...