Simple express middleware for uploading files.
This package is still very much supported and maintained. But the more help the better. If you're interested any of the following:
...please contact richardgirges '-at-' gmail.com
# With NPM
npm i express-fileupload
# With Yarn
yarn add express-fileupload
When you upload a file, the file will be accessible from req.files.
Example:
<input name="foo" type="file" />req.files.foo:app.post('/upload', function(req, res) {
console.log(req.files.foo); // the uploaded file object
});
The req.files.foo object will contain the following:
req.files.foo.name: "car.jpg"req.files.foo.mv: A function to move the file elsewhere on your server. Can take a callback or return a promise.req.files.foo.mimetype: The mimetype of your filereq.files.foo.data: A buffer representation of your file, returns empty buffer in case useTempFiles option was set to true.req.files.foo.tempFilePath: A path to the temporary file in case useTempFiles option was set to true.req.files.foo.truncated: A boolean that represents if the file is over the size limitreq.files.foo.size: Uploaded size in bytesreq.files.foo.md5: MD5 checksum of the uploaded fileNotes about breaking changes with MD5 handling:
md5 is an MD5 checksum of the uploaded file.md5 is a function to compute an MD5 hash (Read about it here.).md5 is reverted back to MD5 checksum value and also added full MD5 support in case you are using temporary files.md5 still holds the checksum value, but the checksum is generated with the provided hashAlgorithm option. The property name remains md5 for backwards compatibility.Pass in Busboy options directly to the express-fileupload middleware. Check out the Busboy documentation here.
app.use(fileUpload({
limits: { fileSize: 50 * 1024 * 1024 },
}));
Use temp files instead of memory for managing the upload process.
// Note that this option available for versions 1.0.0 and newer.
app.use(fileUpload({
useTempFiles : true,
tempFileDir : '/tmp/'
}));
You can set debug option to true to see some logging about upload process.
In this case middleware uses console.log and adds Express-file-upload prefix for outputs.
You can set a custom logger having .log() method to the logger option.
It will show you whether the request is invalid and also common events triggered during upload. That can be really useful for troubleshooting and we recommend attaching debug output to each issue on Github.
Output example:
Express-file-upload: Temporary file path is /node/express-fileupload/test/temp/tmp-16-1570084843942
Express-file-upload: New upload started testFile->car.png, bytes:0
Express-file-upload: Uploading testFile->car.png, bytes:21232...
Express-file-upload: Uploading testFile->car.png, bytes:86768...
Express-file-upload: Upload timeout testFile->car.png, bytes:86768
Express-file-upload: Cleaning up temporary file /node/express-fileupload/test/temp/tmp-16-1570084843942...
Description:
Temporary file path is... says that useTempfiles was set to true and also shows you temp file name and path.New upload started testFile->car.png says that new upload started with field testFile and file name car.png.Uploading testFile->car.png, bytes:21232... shows current progress for each new data chunk.Upload timeout means that no data came during uploadTimeout.Cleaning up temporary file Here finaly we see cleaning up of the temporary file because of upload timeout reached.Pass in non-Busboy options directly to the middleware. These are express-fileupload specific options.
Option | Acceptable Values | Details --- | --- | --- createParentPath |
false (default)true.mv(filePathName)
uriDecodeFileNames | false (default)truefalse (default)truetrue, non-alphanumeric characters except dashes and underscores will be stripped. This option is off by default.app.use(fileUpload({ safeFileNames: /\\/g }))app.use(fileUpload({ safeFileNames: true }))
preserveExtension | false (default)trueNumbersafeFileNames option. If set to true, will default to an extension length of 3. If set to Number, 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.app.use(fileUpload({ safeFileNames: true, preserveExtension: true }));app.use(fileUpload({ safeFileNames: true, preserveExtension: 2 }));false (default)truetruncated = true to the resulting file structure.
responseOnLimit | 'File size limit has been reached' (default)Stringfalse (default)function(req, res, next)false (default)trueString (path)useTempFiles option. By default this module uses 'tmp' folder in the current working directory.IntegeruseTempFiles option. By default this module uses '644' permissions.false (default)true{'name': 'John', 'hobbies[0]': 'Cinema', 'hobbies[1]': 'Bike'}{'name': 'John', 'hobbies': ['Cinema', 'Bike']}
debug | false (default)trueconsole (default){log: function(msg: string)}60000 (default)Integermd5 (default)Stringopenssl list -digest-algorithms will display the available digest algorithms.
Looking for additional maintainers. Please contact richardgirges [ at ] gmail.com if you're interested. Pull Requests are welcome!
Brian White for his stellar work on the Busboy Package and the connect-busboy Package