Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 684
lukas293 Avatar asked Dec 13 '15 17:12

lukas293


3 Answers

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){
       [...]
    })
like image 94
lukas293 Avatar answered Sep 28 '22 16:09

lukas293


For me, it also worked.

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

router.post("/upload", upload.single("foo-bar"), function(req, res) {
  ...
}
like image 45
Pei Avatar answered Sep 28 '22 17:09

Pei


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.

like image 2
Renish Gotecha Avatar answered Sep 28 '22 15:09

Renish Gotecha