progress-stream icon indicating copy to clipboard operation
progress-stream copied to clipboard

Progress-stream + multer

Open fmaxx opened this issue 5 years ago • 0 comments

Do you know how to use this library with multer? I've found an example, but it doesn't work for me:

app.post('/upload', function (req, res, next) { var p = progress(); req.pipe(p); p.headers = req.headers; p.on('progress', function (status) { console.log(status); }); upload(p, res, function (err) { res.send('Successfully uploaded files!') }); });

Thanx!

fmaxx avatar Apr 12 '20 14:04 fmaxx