madhums / node-express-mongoose-demo

A simple demo app using node and mongodb for beginners (with docker)
https://nodejs-express-demo.fly.dev
MIT License
5.12k stars 1.38k forks source link

Store images locally #152

Closed skunkies closed 8 years ago

skunkies commented 8 years ago

Hi, I use your template for starting a small project but I am facing an issue regarding images. I would like to store the images locally instead of Amazon S3. What I need to change to do so? Thank you for helping.

madhums commented 8 years ago

Simply change this line to https://github.com/madhums/node-express-mongoose-demo/blob/master/config/express.js#L16

const upload = require('multer')({ dest: 'uploads/' });

Also checkout the examples of multer https://github.com/expressjs/multer