richardgirges / express-fileupload

Simple express file upload middleware that wraps around busboy
MIT License
1.52k stars 261 forks source link

Can we not upload the file to the server ? #280

Closed pioupia closed 3 years ago

pioupia commented 3 years ago

Hi ! Your package works really well. Unfortunately, I do not want to upload the file to my server but only kept the buffer that we do not get. Is there a function to avoid uploading files to the server ?

Thank you in advance ! Have a great day !

RomanBurunkov commented 3 years ago

Remove useTempFiles option or set it to false and also do not call file.mv method. file.data will be a buffer containing the uploaded file.