0.0.2 • Published 9 years ago

activecollab v0.0.2

Weekly downloads
7
License
MIT
Repository
bitbucket
Last release
9 years ago

activecollab-node

A simple client module for accessing ActiveCollab's API. Only a handful of the most basic endpoints are actually implemented (read: what I needed myself).

Installation

npm install activecollab

Usage

var ActiveCollab = require('activecollab');

var apiUrl = 'https://your-activecollab-site.com/api.php';
var apiKey = 'Your API key, can be found in your user settings';

var ac = new ActiveCollab(apiUrl, apiKey);

self.activeCollab.projects.getAll(function(projects) {
	console.log('All my projects:', projects);
});

To Do

  • Documentation
  • Implement all API endpoints
  • Examples
  • Tests