Skip to content

Instantly share code, notes, and snippets.

@coloredlambda
Last active April 3, 2018 08:02
Show Gist options
  • Save coloredlambda/7dafbad9d2ae2defc2adacecd50ad13c to your computer and use it in GitHub Desktop.
Save coloredlambda/7dafbad9d2ae2defc2adacecd50ad13c to your computer and use it in GitHub Desktop.
Multer Disk Storage Configuration
const storageConfiguration = multer.diskStorage({
destination: (req, file, callback) => {
callback(null, `${__dirname}/upload`);
},
filename: (req, file, callback) => {
let name = `ourFile${path.extname(file.originalname)}`;
callback(null, name);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment