lukas293
lukas293

Reputation: 558

Use multer for File-Uploads inside a Express Router

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?

Upvotes: 19

Views: 17420

Answers (3)

Renish Gotecha
Renish Gotecha

Reputation: 2522

In my case i try every thing but it not works but i come over the solution

app.js

const multer  = require('multer');
const storage =  {
    dest:  'UPLOAD/PATH/'
}
const upload = multer(storage);
app.post('/myupload', upload.single('FILE_NAME'), (req,res)=>{
  res.send('Upload');
});

i tried many times with express.Router() but it not works that's why i write code in app.js and redirect to another file.

Upvotes: 2

Pei
Pei

Reputation: 11643

For me, it also worked.

var multer = require("multer")
var upload = multer({ dest: "path" })

router.post("/upload", upload.single("foo-bar"), function(req, res) {
  ...
}

Upvotes: 8

lukas293
lukas293

Reputation: 558

Ok, I got it.

I can use

var multer = require("multer")
var upload = multer({ dest: "some/path" })

[...]

router.route("/upload")
    /* replace foo-bar with your form field-name */
    .post(upload.single("foo-bar"), function(req, res){
       [...]
    })

Upvotes: 25

Related Questions