activecollab
v0.0.2
Published
API Client for ActiveCollab
Downloads
4
Readme
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