Uploading large files axios ->feathers on IIS forwarding to node #2471
-
Hi All I have a Vue.js application with a feathers backend - where i upload files - and is is working fine with small files (27231 KB works great) in the devtools console i get the following two messages: I am running my backend on IIS where I user URL rewrite to point to a node.js application hosting feathers I am quite new to both vue, feathers and node and setting up IIS is also I can see that the 413 means: the request was larger than the server is able to handle - can anyone point me in the right direction. my vue application looks like this await this.$axios.post(
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
For large files better to stream it, it's express after all. |
Beta Was this translation helpful? Give feedback.
For large files better to stream it, it's express after all.
check this to get the idea:
https://medium.com/@vecera.petr/how-to-handle-large-file-upload-with-nodejs-express-server-7de9ab3f7af1
https://bytearcher.com/articles/formidable-vs-busboy-vs-multer-vs-multiparty/