dpd-fileupload
dpd-fileupload copied to clipboard
File upload module for Deployd
@EvilDrW sent us a nice PR to refactor dpd-fileupload and inherit from collection (https://github.com/NicolasRitouet/dpd-fileupload/pull/47). This introduced some backward compatibility. We should collect in this ticket the backward-compatibility issues we have...
Condition: - Web Application placed on another server - Web app tried to upload file into to `dpd-fileupload` The problem is http response produce nothing (response code 0). Can we...
It would be nice it if there was an option for the upload file resource to automatically delete files after some parametric amount of time. ie, set uploaded files to...
Add a nice UI in the dashboard to display the uploaded files with the params
Allow user to use GET requests with or without authentication with keeping authentication required for PUT / POST
Example with Formidable: ``` on('progress', function(bytesReceived, bytesExpected) { var percentageUpload = '100*(bytesReceived/bytesExpected)'; ctx.session.emit(percentageUpload, xxx, xxx); // Should emit only to user } ```
If a file with the same name already exists, we should handle that: - throw an error or - append (n) at the end of the file Check should probably...
Hey Nicolas, indeed it would be a very needed feature to handle files based on access management...therefore here my feature request...besides great work man thanks a ton!!!
I don't like [this](https://github.com/NicolasRitouet/dpd-fileupload/blob/master/index.js#L25): ``` fullDirectory: __dirname + "/../../public/" + (this.config.directory || 'upload') + "/" ``` Can we find a better way?