node-file-upload
node-file-upload copied to clipboard
Example project how to stream files while doing upload with NodeJS and Express
Example code how to handle large file upload in NodeJS
Aka how to stream the data directly to disk while they are beeing uploaded.
You can read more info https://pagep.net/2018/03/31/how-to-handle-large-file-upload-with-nodejs-express-server/
But the code should be pretty self-explanatory...
All the magic happens in the main.js
Run the code
-
git clone https://github.com/petrvecera/node-file-upload.git
-
cd node-file-upload
-
yarn install
-
yarn start
You can also use npm
instead of yarn
.