You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
8.9 KiB

  1. # express-fileupload
  2. Simple express middleware for uploading files.
  3. [![npm](https://img.shields.io/npm/v/express-fileupload.svg)](https://www.npmjs.org/package/express-fileupload)
  4. [![downloads per month](http://img.shields.io/npm/dm/express-fileupload.svg)](https://www.npmjs.org/package/express-fileupload)
  5. [![CircleCI](https://circleci.com/gh/richardgirges/express-fileupload/tree/master.svg?style=svg)](https://circleci.com/gh/richardgirges/express-fileupload/tree/master)
  6. [![Coverage Status](https://img.shields.io/coveralls/richardgirges/express-fileupload.svg)](https://coveralls.io/r/richardgirges/express-fileupload)
  7. # Security Notice
  8. Please install version 1.1.10+ of this package to avoid a security vulnerability in Node/EJS related to JS prototype pollution. This vulnerability is only applicable if you have the `parseNested` option set to `true` (it is `false` by default).
  9. # Install
  10. ```bash
  11. # With NPM
  12. npm i express-fileupload
  13. # With Yarn
  14. yarn add express-fileupload
  15. ```
  16. # Usage
  17. When you upload a file, the file will be accessible from `req.files`.
  18. Example:
  19. * You're uploading a file called **car.jpg**
  20. * Your input's name field is **foo**: `<input name="foo" type="file" />`
  21. * In your express server request, you can access your uploaded file from `req.files.foo`:
  22. ```javascript
  23. app.post('/upload', function(req, res) {
  24. console.log(req.files.foo); // the uploaded file object
  25. });
  26. ```
  27. The **req.files.foo** object will contain the following:
  28. * `req.files.foo.name`: "car.jpg"
  29. * `req.files.foo.mv`: A function to move the file elsewhere on your server. Can take a callback or return a promise.
  30. * `req.files.foo.mimetype`: The mimetype of your file
  31. * `req.files.foo.data`: A buffer representation of your file, returns empty buffer in case useTempFiles option was set to true.
  32. * `req.files.foo.tempFilePath`: A path to the temporary file in case useTempFiles option was set to true.
  33. * `req.files.foo.truncated`: A boolean that represents if the file is over the size limit
  34. * `req.files.foo.size`: Uploaded size in bytes
  35. * `req.files.foo.md5`: MD5 checksum of the uploaded file
  36. **Notes about breaking changes with MD5 handling:**
  37. * Before 1.0.0, `md5` is an MD5 checksum of the uploaded file.
  38. * From 1.0.0 until 1.1.1, `md5` is a function to compute an MD5 hash ([Read about it here.](https://github.com/richardgirges/express-fileupload/releases/tag/v1.0.0-alpha.1)).
  39. * From 1.1.1 onward, `md5` is reverted back to MD5 checksum value and also added full MD5 support in case you are using temporary files.
  40. ### Examples
  41. * [Example Project](https://github.com/richardgirges/express-fileupload/tree/master/example)
  42. * [Basic File Upload](https://github.com/richardgirges/express-fileupload/tree/master/example#basic-file-upload)
  43. * [Multi-File Upload](https://github.com/richardgirges/express-fileupload/tree/master/example#multi-file-upload)
  44. ### Using Busboy Options
  45. Pass in Busboy options directly to the express-fileupload middleware. [Check out the Busboy documentation here](https://github.com/mscdex/busboy#api).
  46. ```javascript
  47. app.use(fileUpload({
  48. limits: { fileSize: 50 * 1024 * 1024 },
  49. }));
  50. ```
  51. ### Using useTempFile Options
  52. Use temp files instead of memory for managing the upload process.
  53. ```javascript
  54. // Note that this option available for versions 1.0.0 and newer.
  55. app.use(fileUpload({
  56. useTempFiles : true,
  57. tempFileDir : '/tmp/'
  58. }));
  59. ```
  60. ### Using debug option
  61. You can set `debug` option to `true` to see some logging about upload process.
  62. In this case middleware uses `console.log` and adds `Express-file-upload` prefix for outputs.
  63. It will show you whether the request is invalid and also common events triggered during upload.
  64. That can be really useful for troubleshooting and ***we recommend attaching debug output to each issue on Github***.
  65. ***Output example:***
  66. ```
  67. Express-file-upload: Temporary file path is /node/express-fileupload/test/temp/tmp-16-1570084843942
  68. Express-file-upload: New upload started testFile->car.png, bytes:0
  69. Express-file-upload: Uploading testFile->car.png, bytes:21232...
  70. Express-file-upload: Uploading testFile->car.png, bytes:86768...
  71. Express-file-upload: Upload timeout testFile->car.png, bytes:86768
  72. Express-file-upload: Cleaning up temporary file /node/express-fileupload/test/temp/tmp-16-1570084843942...
  73. ```
  74. ***Description:***
  75. * `Temporary file path is...` says that `useTempfiles` was set to true and also shows you temp file name and path.
  76. * `New upload started testFile->car.png` says that new upload started with field `testFile` and file name `car.png`.
  77. * `Uploading testFile->car.png, bytes:21232...` shows current progress for each new data chunk.
  78. * `Upload timeout` means that no data came during `uploadTimeout`.
  79. * `Cleaning up temporary file` Here finaly we see cleaning up of the temporary file because of upload timeout reached.
  80. ### Available Options
  81. Pass in non-Busboy options directly to the middleware. These are express-fileupload specific options.
  82. Option | Acceptable&nbsp;Values | Details
  83. --- | --- | ---
  84. createParentPath | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>true</code></ul> | Automatically creates the directory path specified in `.mv(filePathName)`
  85. uriDecodeFileNames | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>true</code></ul> | Applies uri decoding to file names if set true.
  86. safeFileNames | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>true</code></li><li>regex</li></ul> | Strips characters from the upload's filename. You can use custom regex to determine what to strip. If set to `true`, non-alphanumeric characters _except_ dashes and underscores will be stripped. This option is off by default.<br /><br />**Example #1 (strip slashes from file names):** `app.use(fileUpload({ safeFileNames: /\\/g }))`<br />**Example #2:** `app.use(fileUpload({ safeFileNames: true }))`
  87. preserveExtension | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>true</code></li><li><code>*Number*</code></li></ul> | Preserves filename extension when using <code>safeFileNames</code> option. If set to <code>true</code>, will default to an extension length of 3. If set to <code>*Number*</code>, this will be the max allowable extension length. If an extension is smaller than the extension length, it remains untouched. If the extension is longer, it is shifted.<br /><br />**Example #1 (true):**<br /><code>app.use(fileUpload({ safeFileNames: true, preserveExtension: true }));</code><br />*myFileName.ext* --> *myFileName.ext*<br /><br />**Example #2 (max extension length 2, extension shifted):**<br /><code>app.use(fileUpload({ safeFileNames: true, preserveExtension: 2 }));</code><br />*myFileName.ext* --> *myFileNamee.xt*
  88. abortOnLimit | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>true</code></ul> | Returns a HTTP 413 when the file is bigger than the size limit if true. Otherwise, it will add a <code>truncated = true</code> to the resulting file structure.
  89. responseOnLimit | <ul><li><code>'File size limit has been reached'</code>&nbsp;**(default)**</li><li><code>*String*</code></ul> | Response which will be send to client if file size limit exceeded when abortOnLimit set to true.
  90. limitHandler | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>function(req, res, next)</code></li></ul> | User defined limit handler which will be invoked if the file is bigger than configured limits.
  91. useTempFiles | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>true</code></ul> | By default this module uploads files into RAM. Setting this option to True turns on using temporary files instead of utilising RAM. This avoids memory overflow issues when uploading large files or in case of uploading lots of files at same time.
  92. tempFileDir | <ul><li><code>String</code>&nbsp;**(path)**</li></ul> | Path to store temporary files.<br />Used along with the <code>useTempFiles</code> option. By default this module uses 'tmp' folder in the current working directory.<br />You can use trailing slash, but it is not necessary.
  93. parseNested | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>true</code></li></ul> | By default, req.body and req.files are flattened like this: <code>{'name': 'John', 'hobbies[0]': 'Cinema', 'hobbies[1]': 'Bike'}</code><br /><br/>When this option is enabled they are parsed in order to be nested like this: <code>{'name': 'John', 'hobbies': ['Cinema', 'Bike']}</code>
  94. debug | <ul><li><code>false</code>&nbsp;**(default)**</li><li><code>true</code></ul> | Turn on/off upload process logging. Can be useful for troubleshooting.
  95. uploadTimeout | <ul><li><code>60000</code>&nbsp;**(default)**</li><li><code>Integer</code></ul> | This defines how long to wait for data before aborting. Set to 0 if you want to turn off timeout checks.
  96. # Help Wanted
  97. Looking for additional maintainers. Please contact `richardgirges [ at ] gmail.com` if you're interested. Pull Requests are welcome!
  98. # Thanks & Credit
  99. [Brian White](https://github.com/mscdex) for his stellar work on the [Busboy Package](https://github.com/mscdex/busboy) and the [connect-busboy Package](https://github.com/mscdex/connect-busboy)