question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

I have a minimal example done with express.js but I cant get it to work. here is my routes/index.js:

var express = require('express');
var router = express.Router();

var multer              = require("multer");
var upload              = multer({ destination: './'})

router.post('/restapi', upload.single('weg'), function(req, res, next){
  console.log("here");
  console.log(req.file);
  console.log(req.body);

  if(!req.file){
    res.json({"error": "not working"});
    return;
  }

    res.json({"error": "test"});
    return;
});

router.get('/', function(req, res, next) {
  res.json({ "title": "Express" });
  return;
});
module.exports = router;

I want to upload a file to the server with the command:

curl -F weg=@weg.txt localhost:port/restapi; echo {“error”:“not working”}

and my output on the server side is:

node ./bin/www

here undefined {} POST /restapi 200 17.450 ms - 23 here { fieldname: ‘weg’, originalname: ‘weg.txt’, encoding: ‘7bit’, mimetype: ‘text/plain’, buffer:

So the file does get uploaded eventually but before the server returns to the client with the error message “not working” because req.file is undefined. Can anyone help?

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
Wildflyycommented, Oct 15, 2018

I ran another test using Postman and there the example we set up works just fine. So I suppose it has something to do with my cURL. I am sorry for the inconvenience but I wouldn’t have guessed that something is wrong on that side.

0reactions
Wildflyycommented, Oct 15, 2018

I added your suggestion but with minor adapdation to create a log:

//const logRequest = (_, __, ___, next) => { console.log('request received'); next() }
const logRequest = (_, __, ___, next) => { console.log('request received'); }

router.post('/restapi', logRequest, upload.single('weg'), function(req, res, next){

  logRequest();
  console.log("here");
```
My result is:

> Example app listening on port 8080!
> request received
> here
> undefined
> {}
> request received
> here
> { fieldname: 'weg',
>   originalname: 'weg.txt',
>   encoding: '7bit',
>   mimetype: 'text/plain',
>   buffer:
> ....

But I am not sure that is what you wanted to see. When I don't add the "logRequest();" it doesn't log. If I add "loqRequest();" with your orignial suggestion I get a TypeError "next is not a function".
Read more comments on GitHub >

github_iconTop Results From Across the Web

Upload files with CURL - Medium
The proper way to upload files with CURL is to use -F ( — form) option, which will add enctype=”multipart/form-data” to the request....
Read more >
A Step-By-Step Guide To A CURL Upload File - Filestack Blog
CURL upload file allows you to send data to a remote server. The command-line tool supports web forms integral to every web system....
Read more >
How do I post a file using Curl? - ReqBin
To post a file with Curl, use the -d or -F command-line options and start the data with the @ symbol followed by...
Read more >
Uploads - Everything curl
HTTP, and its bigger brother HTTPS, offer several different ways to upload data to a server and curl provides easy command-line options to...
Read more >
Using cURL to upload POST data with files - Stack Overflow
I would like to use cURL to not only send data parameters in HTTP POST but to also upload files with specific form...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found