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

I'm using SocketIOFileUpload in a modular Express+Nuxt.js application. On the client side I'm relying on the [VueSocket.io](https://github.com/MetinSeylan/Vue-Socket.io) library to connect through socket.io, so I ended up making a VueSocketIOFileUpload plugin...

Upgrading the socket.io dependency in package.json for testing to 2.3 causes the tests to hang. Investigate. Failing test: https://travis-ci.com/github/sffc/socketio-file-upload/builds/168153995 See: https://github.com/sffc/socketio-file-upload/commit/4c4e62df53f435b0411fb8a0461201606b5ec897 ``` X_USE_PHANTOM=1 npm test ```

Hello. There is possible issue while saving data with `write` function that could lead to high memory usage by Node.js process. `uploadProgress` function at https://github.com/sffc/socketio-file-upload/blob/master/server.js#L382 doesn't properly handle return value...

Is there way to use this technology with iOS client side?

enhancement

Hello, The client details that returns to the browser after the upload is completed should have return promise also. for example: ``` let uploader = new siofu(); uploader.on('saved', async (event)...

Hi, I'm trying to set server-client meta data in the listener uploader.on('saved') as in the npm docs. But accessing the meta data on the client side has event.detail.data returning undefined...

Is there any way to upload multiple files in a single go and save them in different directories using supplied metadata? Referenced some useful link/s here: * https://stackoverflow.com/questions/46857545/using-socketio-file-upload-to-upload-multiple-files

Some images I upload on one client get uploaded on the other clients browser. I'm not sure what is causing it. I've tried putting the server lines where the documentation...

Hello ! Thank you for this project ! I need to transfer files from a client to an other client. Depending of the topic the final client change. I have...

Hey, I'm trying to use your package to transfer a file between two NodeJS programs, would it be possible to implement the client in a NodeJS program, or is this...