Skip to content

bovine/node-trello

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node wrapper for Trello's HTTP API.

Install

npm install node-trello

Getting the Token

  • Public Key & Secret: visit this link while logged in Trello.

  • With these values visit this other link (Replacing, of course <PUBLIC_KEY> for the public key value obtained). ** If you need read/write access, add the following to the end of the prior URL: &scope=read,write

  • Authorice MyApp to read the application

  • MyApp now have the token.

Example Code

var Trello = require("node-trello");

var t = new Trello("<your key>", "<token>");

t.get("/1/organization/some-org/boards/all", function(err, data) {
  if(err) throw err;
  console.log(data);
});

About

Node wrapper for Trello's HTTP API.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%