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

Uploads files to a Node.JS server using Socket.IO

Results 43 socketio-file-upload issues
Sort by recently updated
recently updated
newest added

Can I use your library between to node server, so transfer file from one to another using absolute file path? can I pause and resume upload , or continue from...

The example for `uploadValidator` sets the global `uploader.dir` property on the fly, which can have a race condition for two simultaneous uploads. A better approach would be to allow every...

This is not an issue with socketio-file-upload, but is an issue others may run into when uploading files. I found that my Microsoft Edge users would end up with files...

Hello and thanks a ton for this wonderful library. I wanted to know if it's possible to obtain a stream object when chunks are being uploaded to the server, so...

How difficult would it be to provide a method to cancel an in-progress file upload? Dropzone.js offers this functionality: http://www.dropzonejs.com/#config-addRemoveLinks. I'm thinking something similar. To understand why someone might want...

Unless I'm not seeing the option, it seems there is no way to allow the uploader to overwrite a file if it already exists.

It would be awesome if a source mapping could be included as well as the minified version so that issues that are thrown to the browser console can be correctly...

This lib is very similar to mine, I have tested the who side by side to see if there is any speed difference. It seems they are near identical in...

Am I doing anything wrong ? HTML ``` ``` JavaScript ``` scope.onChangeStartFileUpload = function(event){ var files = event.target.files; // upload.submitFiles(files[0]); // upload.submitFiles(files); }; ```

When I select something around 20 files, it send chunks for all the files. So if I lose internet connection, all the upload progress is aborted and I'll get no...