Skip to content Skip to sidebar Skip to footer

How To Upload A File Using A Rest Client For Node

I have a REST client on node, and I'm trying to upload pdf a file to another REST webserver which provides the ability to parse my pdf and extract some data. Basically it is a serv

Solution 1:

You can use npm module request to upload the file. Here is a working example

var request = require('request');
var fs = require('fs');
request({
  method: 'PUT',
  preambleCRLF: true,
  postambleCRLF: true,
  uri: 'http://yourdomain/file',
  multipart: [
    {
      'content-type': 'application/pdf',
      body: fs.createReadStream('image.png') 
    }
  ]    
},
function (error, response, body) {
  if (error) {
    return console.error('upload failed:', error);
  }
  console.log('Upload successful!  Server responded with:', body);
});

For receiving at the server side with node you can use modules like busboy. Here is a demo for this

var busboy = require('connect-busboy');
app.use(busboy());
app.use(function(req, res) {
  if (req.busboy) {
    req.busboy.on('file', function(fieldname, file, filename, encoding,    mimetype) {
      // move your file etc
    });
    req.pipe(req.busboy);
  }
});

Solution 2:

You can use request.

There is an example for that

fs.createReadStream('file.pdf').pipe(request.post('http://example.com/file'))

Post a Comment for "How To Upload A File Using A Rest Client For Node"