trello-multer
v1.0.3
Published
This project is mostly a proof of concept. It's not made to be used in production.
Downloads
2
Readme
Multer Trello
This project is mostly a proof of concept. It's not made to be used in production.
Installation
npm install --save trello-multer
Usage
const express = require('express');
const multer = require('multer');
const {TrelloStorage} = require('trello-multer');
const app = express();
const uploader = multer({
storage: new TrelloStorage({
key: 'trello-key',
token: 'trello-token',
board: 'board id',
list: 'list id',
}),
});
app.post('/upload', uploader.single('picture'), (req, res) => {
res.json(req.file);
});