![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
busboy-body-parser
Advanced tools
Body parsing for multipart/form-data forms in Express.
It will add regular fields to req.body as per body-parser but will also add uploaded files to req.files
.
npm install busboy-body-parser
const busboyBodyParser = require('busboy-body-parser');
app.use(busboyBodyParser());
This is defined similarly to the limit
option in body-parser but is applied to individual files rather than the total body size.
const busboyBodyParser = require('busboy-body-parser');
app.use(busboyBodyParser({ limit: '5mb' }));
This limit can be defined as either a number of bytes, or any string supported by bytes - eg. '5mb'
, '500kb'
.
The upload of multiple files with the same key is not enabled by default. If you wish to support this you will need to set the multi
option to true.
const busboyBodyParser = require('busboy-body-parser');
app.use(busboyBodyParser({ multi: true }));
Important note: if multi
is set to true, then all req.files[key]
will always be an array, irrespective of the nuber of files associated with that key.
The middleware will add files to req.files
in the following form:
// req.files:
{
fieldName: {
data: Buffer("raw file data"),
name: "upload.txt",
encoding: "utf8",
mimetype: "text/plain",
truncated: false
}
}
If a file has exceeded the file-size limit defined above it will have data: null
and truncated: true
:
// req.files:
{
fieldName: {
data: null,
name: "largefile.txt",
encoding: "utf8",
mimetype: "text/plain",
truncated: true
}
}
If the multi
property is set:
// req.files:
{
fieldName: [{
data: Buffer("raw file data"),
name: "upload.txt",
encoding: "utf8",
mimetype: "text/plain",
truncated: false
}]
}
npm test
FAQs
Body parsing for multipart/form-data forms in Express.
The npm package busboy-body-parser receives a total of 0 weekly downloads. As such, busboy-body-parser popularity was classified as not popular.
We found that busboy-body-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.