10

I am sending from front end client side a file, on the server side I have something like this:

{ name: 'CV-FILIPECOSTA.pdf',
  data: <Buffer 25 50 44 46 2d 31 2e 35 0d 25 e2 e3 cf d3 0d 0a 31 20 30 20 6f 62 6a 0d 3c 3c 2f 4d 65 74 61 64 61 74 61 20 32 20 30 20 52 2f 4f 43 50 72 6f 70 65 72 ... >,
  encoding: '7bit',
  mimetype: 'application/pdf',
  mv: [Function: mv] }

What I need is to create the file may be based on that buffer that is there, how can I do it?

I already searched a lot and didn't find any solution.

This is what I tried so far:

router.post('/upload', function(req, res, next) {
  if(!req.files) {
    return res.status(400).send("No Files were uploaded");
  }
  var curriculum = req.files.curriculum; 
  console.log(curriculum);
  curriculum.mv('../files/' + curriculum.name, function(err) {
    if (err){
      return res.status(500).send(err);      
    }
    res.send('File uploaded!');
  });
});

2 Answers 2

14

You could use Buffer available with NodeJS:

let buf = Buffer.from('this is a test');
// buf equals <Buffer 74 68 69 73 20 69 73 20 61 20 74 65 73 74>

let str = Buffer.from(buf).toString();
// Gives back "this is a test"

Encoding could also be specified in the overloaded from method.

const buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex');
// This tells that the first argument is encoded as a hexadecimal string

let str = buf2.toString();
// Gives back the readable english string
// which resolves to "this is a tést"

After you have data available in the readable format, you could store it using the fs module in NodeJS.

fs.writeFile('myFile.txt', "the contents of the file", (err) => {
  if(!err) console.log('Data written');
});

So, after converting the buffered input to string, you need to pass the string into the writeFile method. You could check the documentation of the fs module. It will help you better understand things.

Sign up to request clarification or add additional context in comments.

4 Comments

thank you,but i don't understand how i can pass it to the fs so it can creates the file, basicly i know how the fs module works, but it is possible to pass the string and he creates the file?
can you give me a short example?
@costacosta Update with writeFile method. Please let me know if this helps.
somehow it works, but the pdf file is empty you know why=
2

I had a function in a React app I wanted to test that expects a File so I had to improvise a little bit.

import { readFileSync } from 'fs';
import path from 'path';

const filePath = path.join(__dirname, 'some-file.csv');
const myFile = new File([readFileSync(file)], 'file.csv');

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.