0.1.3 • Published 7 years ago

trello_api_burndown_parse v0.1.3

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

Simple Trello API parser

Get info about your team and boards using some KeyWorks Trello list structure

let titleOption = '<H> .* (E)[R]'
// or
let titleOption2 = '<H>(E) .* [R]'

Where:

  • E: Estimation time of task
  • R: Real used time of taks
  • H: history

Setup

In order to use Trello API, you will need to generate some credentials. you can get those here: https://developers.trello.com/v1.0/reference#api-key-tokens

After that, you need to pass the API KEY and API TOKEN as a Node enviroment variable example:

ENV TRELLO_KEY=**** TRELLO_TOKEN=**** node myCode.js

Example

We only fetch data, and return as a list. Use it as you want ;)

// Requires trello config
const Trello = require('./main.js')

// initialize
let trello = new Trello('NameTeam')

async function test () {
  let boards = await trello.getBoards()
  // console.log(boards, 'Hola')
  // get full trello report of sprints
  console.log(await trello.sprintReport())
  // the same :) but!, by user
  console.log(await trello.sprintReportByUser())
}

test()

LICENSE

MIT

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

1.0.0

7 years ago