I was wondering if it is possible to get Busboy to parse the fields and files separately. (I have removed bodyParser as you can fill the hard drive with temp files
bodyParser
Instead of
form.on('finish', function () { next(); });`
try it with
form.on('end', function () { next(); });`