Can we configure multer to not store files locally and only for using req.files.image.path?

Aravind picture Aravind · Aug 5, 2014 · Viewed 10.8k times · Source

My application's need is as follows: I upload the image to Cloudinary and store the url of image in my mongodb database.

To upload the image to cloudinary, I needed to give the file path, and for that, I am using multer.I use the statement:

app.use(multer({ dest: './uploads/'}));

The problem I face is that, everytime I upload an image from my local system to the database on Cloudinary, a local copy gets created in './uploads/'.I want this to not happen, since my images are there on Cloudinary.

I read the documentation of multer where it says:

Multer accepts an options object, the most basic of which is the dest property, which tells Multer where to upload the files. In case you omit the options object, the file will be renamed and uploaded to the temporary directory of the system.

I am unable to make out if that temporary upload space needs cleaning or if it is taken care of.My images are uploaded on Cloudinary.I used multer only for getting :

req.files.photo.path

to work.Is there any other way to do the same or if multer can be configured in a way to not store images to my local system?

Answer

skycocoo picture skycocoo · Jul 18, 2018

July 2018:

So if you want to store an image into some sort of database, you probably want to convert it into a buffer, and then insert buffer into the database. If you are using multer to process the multipart form (in this case the image file you want to upload), you can use multer's memoryStorage to get the buffer of the image directly. In other words:

var storage = multer.memoryStorage(); var upload = multer({ storage: storage });

to get the buffer:

When using memory storage, the file info will contain a field called buffer that contains the entire file.

that means you can get the buffer from command like req.files[0].buffer


I updated a simple repo demonstrating upload images to database without making a copy to local in this repo