I\'m attempting to get a simple file upload mechanism working with Express 4.0 but I keep getting undefined
for req.files
in the app.post
express-fileupload
looks like the only middleware that still works these days.
With the same example, multer
and connect-multiparty
gives an undefined value of req.file or req.files, but express-fileupload
works.
And there are a lot of questions and issues raised about the empty value of req.file/req.files.