I got a working REST-API built with node.js and Express.
Now I need a file-upload endpoint, which accepts uploaded files and processes them.
I am using an Express Router and some Authentication middleware.
server.js (excerpt)
var router = express.Router()
app.use("/api", router)
[...]
router.use(function(req, res, next) {
//Authentification middleware
[...]
next()
})
router.route("/upload")
.post(function(req, res){
//upload logic
})
How can I use multer to serve the uploaded file as req.file (or so), but only in /api/upload and for authed users?