Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 464 Bytes

README.md

File metadata and controls

53 lines (39 loc) · 464 Bytes

Launchpad api client for JavaScript

Usage

Post

Launchpad
    .url('/data/tasks')
    .post({ desc: 'Buy milk' });

Get

Launchpad
   .url('/data/tasks')
   .get()
   .then(function(clientResponse) {
        console.log(clientResponse.body())
   });

Setup

npm install
bower install

Build

gulp build
gulp watch

Test

gulp test
gulp test:watch