bnoordhuis: I use https://github.com/Valums-File-Uploader/file-uploader to do XHR file uploads.. using express app.post(), I get the request, ws = require('fs').createWriteStream(fileName), then on each req.on('data') from the express post, I do ws.write(data); until I get the ws.end...