Search code examples
file-uploadnode.jsuploadnginxuploading

upload big files to server


I want to upload big files to server. What is the best way to this:

1) using node.js library, such as formidable
2) using nginx upload module

or may be other more faster and better solution ?


Solution

  • If you just want to upload big files nginx would be the better solution.

    However if you want to stream files, download as you upload, then node.js would be the right tool.