Open
Description
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.