标签: file-upload node.js upload nginx uploading
我想将大文件上传到服务器。最好的方法是什么:
1) using node.js library, such as formidable 2) using nginx upload module
或者可能是其他更快更好的解决方案?
答案 0 :(得分:1)
如果您只想上传大文件,那么nginx将是更好的解决方案。
但是,如果您想要流式传输文件,请在上传时下载,然后node.js将是正确的工具。