1.0.5 • Published 7 years ago
trello-core v1.0.5
trello-core
Core Trello node module
Usage
npm i --save trello-coreconst TrelloClient = require('trello-core');
const client = new TrelloClient({
key: 'your trello key',
token: 'your trello token',
});
client.search({query: 'whatever'})
.then(console.log);Roadmap
- Search
GET /api/search - Get board
GET /api/boards/:boardid - Create board
POST /api/boards - Update board
PUT /api/boards/:boardid - Get list
GET /api/lists/:listid - Create list
POST /api/lists - Update list
PUT /api/lists/:listid - Get card
GET /api/cards/:cardid - Create card
POST /api/cards - Update card
PUT /api/cards/:cardid - Get attachments
GET /api/cards/:cardid/attachments - Upload attachment
POST /api/cards/:cardid/attachments