| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/gavin/workspace/readjs/node_modules/busboy-body-parser/ |
Upload File : |
# busboy-body-parser
Body parsing for multipart/form-data forms in Express.
It will add regular fields to req.body as per [body-parser](https://www.npmjs.org/package/body-parser) but will also add uploaded files to `req.files`.
## Install
`npm install busboy-body-parser`
## Usage
### Basic usage
```javascript
const busboyBodyParser = require('busboy-body-parser');
app.use(busboyBodyParser());
```
### Define a file-size limit
This is defined similarly to the `limit` option in [body-parser](https://www.npmjs.org/package/body-parser) but is applied to individual files rather than the total body size.
```javascript
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](https://www.npmjs.org/package/bytes) - eg. `'5mb'`, `'500kb'`.
### Uploading multiple files with the same key
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.
```javascript
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.
## Output
The middleware will add files to `req.files` in the following form:
```
// req.files:
{
fieldName: {
data: "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: "raw file data",
name: "upload.txt",
encoding: "utf8",
mimetype: "text/plain",
truncated: false
}]
}
```
## Tests
`npm test`