
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
A Node.js client implementation for Asana API.
var asana = require('asana-api');
var client = asana.createClient({
apiKey: 'your-secret-api-key'
});
client.users.list(function (err, users) {
//
// List all users for this Asana account.
//
console.dir(users);
});
var asana = require('asana-api');
var client = asana.createClient({
token: 'your-oauth-token'
});
client.users.list(function (err, users) {
//
// List all users for this Asana account.
//
console.dir(users);
});
Or go even further and supply enough information for OAuth to refresh the access token
var asana = require('asana-api');
var client = asana.createClient({
oauth: {
accessToken : "your-oauth-token",
refreshToken : "your-oauth-refresh-token",
clientId : "your-client-id",
clientSecret : "your-client-secret",
redirectUrl : "your-redirect-url-to-store-new-token"
}
});
client.users.list(function (err, users) {
//
// List all users for this Asana account.
//
console.dir(users);
});
GET /users
GET /users
GET /users/me
GET /users/:user-id
GET /workspaces
GET /workspaces/:workspace-id/tasks
GET /workspaces/:workspace-id/projects
GET /organizations/:workspace-id/teams
POST /tasks
GET /tasks
PUT /tasks/:task-id
GET /tasks/:task-id
DELETE /tasks/:task-id
GET /tasks/:task-id/stories
POST /tasks/:task-id/stories
POST /tasks/:task-id/addProject
GET /projects
GET /projects/:project-id/tasks
POST /tags
GET /tags
GET /tags/:tag-id
PUT /tags/:tag-id
GET /tags/:tag-id/tasks
GET /tasks/:task-id/projects
POST /tasks/:task-id/removeProject
GET /projects/:project-id
PUT /projects/:project-id
GET /stories/:story-id
PUT /workspaces/:workspace-id
POST /workspaces/:workspace-id/tasks
GET /workspaces/:workspace-id/users
$ npm test
FAQs
A nodejs client implementation for Asana API
The npm package asana-api receives a total of 8 weekly downloads. As such, asana-api popularity was classified as not popular.
We found that asana-api 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.