multer
multer copied to clipboard
Node.js middleware for handling `multipart/form-data`.
Hey, I took another attempt at fixing multer's support for `AsyncLocalStorage`. I believe this addresses the feedback in #1119. Fixes #814 Fixes #1046
Hi, I added support for these busboy configuration paramters. Reason for this is that I need ' defParamCharset' override from `latin1` to `utf-8`. We have busboy 1.6.0 in our project...
### Introduction Hello 👋, first of all I want to thank everyone who contribute/contributed to this awesome project. I really enjoyed using multer a long time. But now I have...
Hi im having this problem with my nextjs app. I have an api route thas use the multer middleware, for that to work i have to tell next to disable...
I have the following code to handle profile pic uploads. Everything works fine if under the limits: fileSize, but when fileSize is exceeded no error is thrown. Error handling based...
I would like to allow files up to and including 10mb (10,485,760 bytes) and have specified `fileSize` with this number of bytes. When I tried uploading a file exactly 10485760...
Fixed error message for LIMIT_UNEXPECTED_FILE.
https://github.com/expressjs/multer/blob/4f4326a6687635411a69d70f954f48abb4bce58a/lib/multer-error.js#L10 I am using the LIMIT_UNEXPECTED_FILE error message when a file uploaded is the wrong file type, the human readable error message looks wrong to me, it says: "Unexpected field"...
I am uploading two image using `.fields([{ name: 'certificateImage', maxCount: 1 }, { name: 'addressProofImage', maxCount: 1 }]); ` but it is throwing error when filefilter reject the file error...