node-XMLHttpRequest
node-XMLHttpRequest copied to clipboard
support upload
In the browser, the api looks something like this:
$('#file').on('change', function (event) {
var xhr = new XMLHttpRequest();
xhr.upload.addEventListener('progress', onProgress, false);
xhr.addEventListener('load', onSuccess, false);
xhr.open('POST', '/upload/audio');
fd = new FormData();
fd.append('file', event.target.files[0]);
xhr.send(fd);
});
I'd like to have this functionality with node.js so I can do testing.
i am also facing same problem.... need solution...
Same need here, is there any development of this feature? Maybe another package that would implement it? Thanks. :-)
+1
+1