0.0.7 • Published 9 years ago

99designs-tasks v0.0.7

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

99designs Tasks

99designs Tasks API client for Node.js

Installation

$ npm install --save 99designs-tasks

Usage

Simple usage looks like:

var tasks = require('99designs-tasks');
var api = tasks.apiClient('yourapikey');
api.createTask({ body: 'your task brief', urls: ['http://example.org/file.png'], filenames: ['/path/to/file.pdf'], function(err, task) {
  if (err) {
    console.error(err);
  }
  console.log(task);
});