Skip to content

Releases: ricardotulio/trello-js

Add `card` resource

04 Jun 18:18
Compare
Choose a tag to compare
Add `card` resource Pre-release
Pre-release
Merge pull request #8 from ricardotulio/v0.2.0

release: version 0.2.0

fix: export client from trello.js

03 Jun 17:36
Compare
Choose a tag to compare
Pre-release
Merge pull request #5 from ricardotulio/v0.1.3

release: v0.1.3

Fix: import client into trello.js

03 Jun 17:07
Compare
Choose a tag to compare
Pre-release
Merge pull request #1 from ricardotulio/fix/import-client

fix: import client into trello.js

First release

03 Jun 17:06
Compare
Choose a tag to compare
First release Pre-release
Pre-release

First release

This release contains:

client

The client allows us to connect with trello api and consume trello data. For example:

var trello = require('trellojs')

var credentials = {
  key: APP_KEY,
  token: USER_TOKEN
}

trello.connect(credentials)
  .then(client => USE CLIENT HERE)

boards.all()

The boards.all() allows us to retrevies data from all user boards from trello api. For example:

trello.connect(credentials)
  .then(client => client.boards.all())
  .then(boards => console.log(boards))