1.0.5 • Published 5 years ago

trello-core v1.0.5

Weekly downloads
7
License
MIT
Repository
-
Last release
5 years ago

trello-core

Core Trello node module

Usage

npm i --save trello-core
const 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
1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago