Socket
Book a DemoInstallSign in
Socket

asana-api

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asana-api

A nodejs client implementation for Asana API

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
5
-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

node-asana-api

A node.js client implementation for Asana API.

Usage

  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);
  });

API Coverage

Implemented

  GET /users
  GET /users/me
  GET /users/:user-id
  
  GET /workspaces
  GET /workspaces/:workspace-id/tasks
  
  GET /tasks
  GET /tasks/:task-id

  GET /projects
  GET /projects/:project-id/tasks  

Not Implemented

  POST /tasks
  PUT  /tasks/:task-id
  GET  /tasks/:task-id/stories
  POST /tasks/:task-id/stories
  GET  /tasks/:task-id/projects
  POST /tasks/:task-id/addProject
  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/projects
  GET  /workspaces/:workspace-id/users

Installation

Installing npm (node package manager)

  curl http://npmjs.org/install.sh | sh

Installing node-asana-api

  [sudo] npm install asana-api

Run Tests

  $ npm test

Author: Charlie Robbins

Keywords

asana

FAQs

Package last updated on 16 Jun 2012

Did you know?

Socket

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.

Install

Related posts