
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
This is a wrapper for some of the Trello HTTP API. Please feel free to add any other pieces you need! :)
npm install trello
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).
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);
}
});
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
})
// 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)
});
Everything that is not available as a function can be requested by calling makeRequest.
addCustomFieldaddOptionToCustomFieldsetCustomFieldOnCardupdateCardPosdelMemberFromCardcopyBoard functionalitygetCustomFieldsOnBoardgetActionsOnBoardgetCardsOnBoardWithExtraParamsgetCardsOnListWithExtraParamsaddDueDateToCardaddCardWithExtraParamsmakeRequestgetMembergetCardStickersaddStickerToCardgetOrgBoardsgetMemberCardsupdateBoardPrefaddMemberToBoardrenameListaddChecklistToCardgetChecklistsOnCardaddExistingChecklistToCardupdateChecklistgetOrgMembersaddAttachmentToCard addedrestler dependencytrello_ex merged again with original project trellogetBoards addedFAQs
This module provides an easy way to make requests to the Trello API.
The npm package trello receives a total of 1,028 weekly downloads. As such, trello popularity was classified as popular.
We found that trello demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.