A wrapper around teamwork api making it easier to perform requests.
$ npm install teamwork-api
Getting Started
The api key and sub-domain are required to connect to teamwork's api, provide these as environment variables like so:
process.env.TW_API = '1234567890'
process.env.TW_SUB = 'subdomain'
const tw = require('teamwork-api')()
Alternativly pass them in as function arguments
const tw = require('teamwork-api')('1234567890', 'subdomain')