All Projects → norberteder → Trello

norberteder / Trello

Use the Trello API from Node

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Trello

trelabels
Trelabels for Trello
Stars: ✭ 25 (-90.31%)
Mutual labels:  trello
trello-clone
A small Trello clone built in React and Redux
Stars: ✭ 69 (-73.26%)
Mutual labels:  trello
Pymisp
Python library using the MISP Rest API
Stars: ✭ 254 (-1.55%)
Mutual labels:  api
tripllo vue
Trello + Trip = Tripllo. 포트폴리오를 위한 프로젝트
Stars: ✭ 24 (-90.7%)
Mutual labels:  trello
cascade
A project management service with pure functional programming paradigm in the heart.
Stars: ✭ 21 (-91.86%)
Mutual labels:  trello
Django Oscar Api
RESTful JSON API for django-oscar
Stars: ✭ 251 (-2.71%)
Mutual labels:  api
activity-timer
Activity timer powerup for Trello
Stars: ✭ 28 (-89.15%)
Mutual labels:  trello
Discordeno
Discord API library for Deno
Stars: ✭ 254 (-1.55%)
Mutual labels:  api
xeo
A modern tool to bring SCRUM to Notion!
Stars: ✭ 26 (-89.92%)
Mutual labels:  trello
Stripe
A comprehensive PHP Library for the Stripe.
Stars: ✭ 256 (-0.78%)
Mutual labels:  api
Mejili
A Trello clone based on PHP using Laravel 4.2, knockout and twitter bootstrap
Stars: ✭ 17 (-93.41%)
Mutual labels:  trello
trobot
Make your own trello bot in node.js
Stars: ✭ 21 (-91.86%)
Mutual labels:  trello
Pysnowball
雪球股票数据接口 python edition
Stars: ✭ 256 (-0.78%)
Mutual labels:  api
lazylead
Eliminate the annoying work within ticketing systems (Jira, GitHub, Trello). Allows automating (without admin access) daily actions like tickets fields verification, email notifications by JQL/GQL, meeting requests to your (or teammates) calendar.
Stars: ✭ 42 (-83.72%)
Mutual labels:  trello
Weworkapi python
official lib of wework api https://work.weixin.qq.com/api/doc
Stars: ✭ 256 (-0.78%)
Mutual labels:  api
trello-feels-good
Custom Trello.com theme as userstyle and chrome extension
Stars: ✭ 17 (-93.41%)
Mutual labels:  trello
Clone-trello
A simple clone trello
Stars: ✭ 17 (-93.41%)
Mutual labels:  trello
Azure Devops Python Api
Azure DevOps Python API
Stars: ✭ 257 (-0.39%)
Mutual labels:  api
Carrierwave Base64
Upload files encoded as base64 strings directly to carrierwave
Stars: ✭ 257 (-0.39%)
Mutual labels:  api
Syno
Simple Node.js wrapper and CLI for Synology DSM REST API 5.x and 6.x.
Stars: ✭ 255 (-1.16%)
Mutual labels:  api

Build Status

trello

A simple asynchronous client for Trello

This is a wrapper for some of the Trello HTTP API. Please feel free to add any other pieces you need! :)

Installation

npm install trello

Usage

Log in to Trello and visit trello.com/app-key to get a token and app key. These need to be supplied when you create the Trello object (see below).

Example

  var Trello = require("trello");
  var trello = new Trello("MY APPLICATION KEY", "MY USER TOKEN");

  trello.addCard('Clean car', 'Wax on, wax off', myListId,
      function (error, trelloCard) {
          if (error) {
              console.log('Could not add card:', error);
          }
          else {
              console.log('Added card:', trelloCard);
          }
      });

Callback or promise

API calls can either execute a callback or return a promise. To return a promise just omit the callback parameter.

  //Callback
  trello.getCardsOnList(listId, callback);

  //Promise
  var cardsPromise = trello.getCardsOnList(listId);
  cardsPromise.then((cards) => {
    //do stuff
  })

Requests to API endpoints, not supported by this lib yet

    // Get all registered tokens and webhooks
    // Url will look like: https://api.trello.com/1/members/me/tokens?webhooks=true&key=YOURKEY&token=YOURTOKEN
    trello.makeRequest('get', '/1/members/me/tokens', { webhooks: true })
      .then((res) => {
          console.log(res)
      });

Available functions

Add

  • addAttachmentToCard
  • addBoard
  • addCard
  • addCardWithExtraParams
  • addChecklistToCard
  • addCommentToCard
  • addDueDateToCard
  • addExistingChecklistToCard
  • addItemToChecklist
  • addLabelOnBoard
  • addLabelToCard
  • addListToBoard
  • addMemberToBoard
  • addMemberToCard
  • addStickerToCard
  • addWebhook
  • copyBoard

Delete

  • deleteCard
  • deleteLabel
  • deleteLabelFromCard
  • deleteWebhook

Get

  • getActionsOnBoard
  • getBoardMembers
  • getBoards
  • getCard
  • getCardsForList
  • getCardsOnBoard
  • getCardsOnBoardWithExtraParams
  • getCardsOnList
  • getCardsOnListWithExtraParams
  • getCardStickers
  • getChecklistsOnCard
  • getCustomFieldsOnBoard
  • getLabelsForBoard
  • getListsOnBoard
  • getListsOnBoardByFilter
  • getMember
  • getMemberCards
  • getOrgBoards
  • getOrgMembers

Update

  • renameList
  • updateBoardPref
  • updateCard
  • updateCardDescription
  • updateCardList
  • updateCardName
  • updateChecklist
  • updateLabel
  • updateLabelColor
  • updateLabelName

Everything that is not available as a function can be requested by calling makeRequest.

History

0.10.0

  • Add copyBoard functionality
  • Add getCustomFieldsOnBoard
  • Add getActionsOnBoard

0.9.1

  • Added trailing slash to /boards/ call

0.9.0

  • New function getCardsOnBoardWithExtraParams
  • New function getCardsOnListWithExtraParams
  • New function addDueDateToCard

0.8.0

  • Rename list fixed
  • Handle API rate limit by retries
  • New function addCardWithExtraParams

0.7.0

  • Public visibility for makeRequest

0.6.0

  • added getMember
  • added getCardStickers
  • added addStickerToCard
  • added getOrgBoards
  • added getMemberCards
  • added updateBoardPref
  • added addMemberToBoard

0.5.1

  • added renameList
  • added addChecklistToCard
  • added getChecklistsOnCard
  • added addExistingChecklistToCard
  • added updateChecklist
  • added getOrgMembers
  • API methods now return the promise

0.5.0

  • Support of promises
  • Basic support of Labeling:
    • getLabelsForBoard
    • addLabelOnBoard
    • deleteLabel
    • addLabelToCard
    • deleteLabelFromCard

0.4.1

  • Updated dev dependencies

0.4.0

  • One-time listener
  • addAttachmentToCard added
  • Updated restler dependency
  • Node.js support >= 0.10.x / removed 0.6 and 0.8

0.3.0

  • Project trello_ex merged again with original project trello
  • Using 'restler' again

0.2.0

  • getBoards added
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].