# trello-multer

> This project is mostly a proof of concept. It's not made to be used in production.

Latest version **1.0.3** (published 2019-03-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install trello-multer
pnpm add trello-multer
yarn add trello-multer
bun add trello-multer
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2019-03-18 |
| First published | 2019-03-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 2.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Jeremie Drouet |
| Maintainers | jdrouet |

## Links

- npm: https://www.npmjs.com/package/trello-multer
- npm.io page: https://npm.io/package/trello-multer

## Dependencies (3)

- [debug](https://npm.io/package/debug.md) ^4.1.1
- [trello-core](https://npm.io/package/trello-core.md) 1.0.5
- [concat-stream](https://npm.io/package/concat-stream.md) ^2.0.0

## Recent versions

- 1.0.3 (latest) — 2019-03-18
- 1.0.2 — 2019-03-17
- 1.0.1 — 2019-03-16

## README

# Multer Trello

This project is mostly a proof of concept. It's not made to be used in production.

## Installation

```bash
npm install --save trello-multer
```

## Usage

```node
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);
});
```

---
_Source: https://npm.io/package/trello-multer · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
