fastify-file-upload icon indicating copy to clipboard operation
fastify-file-upload copied to clipboard

Fastify plugin for uploading files

Results 8 fastify-file-upload issues
Sort by recently updated
recently updated
newest added

![Screenshot 2022-03-11 at 23 06 41](https://user-images.githubusercontent.com/14357697/157986334-f672f95c-10c1-4271-9eae-c09abbddacab.png)

![image](https://user-images.githubusercontent.com/33595434/177246211-60333395-02ee-4d16-b2e0-259c63ccd215.png) Although jwt expired, still upload files to server? How do I solve this problem? ![image](https://user-images.githubusercontent.com/33595434/177246378-e58e1824-44bc-4bbd-b90f-43948eaa9753.png) ![image](https://user-images.githubusercontent.com/33595434/177246420-af9708f8-bcb5-4afe-8c3b-c3e5c8c7766b.png)

I'm unable to loop through the files at the fastify end. I've created a simple form with the help of bulma: ``` Choose a file… No file uploaded ``` Here...

复现 demo https://github.com/zhongshan1993/fastify-file-error-demo 在 触发 busboy 的 error 事件后,又触发了 finish 事件,导致 middie 中的 done 方法再次被调用,此时 req 的值为 null。 这种场景下,live 环境易收到外部攻击 ![image](https://user-images.githubusercontent.com/9253216/99371181-88155800-28f9-11eb-9066-6d74cce688f6.png)

We're sending data as in example bellow, due to this line: ```js if (request.raw.files) { for (const key in request.raw.files) { request.body[key] = request.raw.files[key] } } ``` They got ignored...

How to know if the upload progress fail, broken or corrupted? Also how to add more action right after upload is completed?