multer
multer copied to clipboard
Node.js middleware for handling `multipart/form-data`.
hi. I wanna have a dynamic limit size which is stored in memory cache but I cant. my multer middleware : ```js const multer = require("multer"); const SettingModel = require("../../models/Setting");...
Could you publish the multer package with a version that doesn't include a suffix? We're currently using version 1.4.5-lts.1, but some repositories have a tool that scans and ensures there...
i am using hono and when i try to using multer i got this error 
There is nothing error with using html forms, but requests made through pinia will get 'MulterError: Unexpected field att wrappedFileFilter' ``` javscript // Front-end(pinia) async postCover() { try { console.log(1);...
When I try to upload file **without chaining** the middlewares, the file upload **works** but when I **chain it with other middlewares** like input validation and authentication **the file does...
Hi! I am new with multer. I am posting an array something like this: ``` Array [ Object { "images": Array [ Object { "name": "download.jpeg", "type": "image/jpg", "uri": "file:///data/user/0/host.exp.exponent/cache/ExperienceData/%2540asxce%252Fvenuefy/ImageManipulator/a7175dfe-e5b2-4a01-841a-4ef2b6b79778.jpg",...
As far as I can tell from reading [RFC7578 Section 4.2](https://tools.ietf.org/html/rfc7578#section-4.2) the filename is **not** mandatory. Currently multer ignores files without a filename, [relevant code here](https://github.com/expressjs/multer/blob/7ef2e81215e9b773204df44fb4aee29e58340061/lib/make-middleware.js#L97-L98). I think that this...
Without this fix fields without a name result in a "TypeError: Cannot read property 'length' of undefined". The current change allows getting an error from multer that makes it possible...
I use multer for uploading files and if I upload an unexisting file or with a different file name then I get this `MulterError: Unexpected field` This is good that...