Skip to content
This repository has been archived by the owner on Feb 20, 2021. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 682 Bytes

wunderlist.js.md

File metadata and controls

30 lines (21 loc) · 682 Bytes

Wunderlist.js SDK

The Wunderlist.js SDK is an IO module for easily accessing Wunderlist API endpoints via node, io.js, or the browser.

Installation

npm install wunderlist

Basic Usage

Node/io.js

var WunderlistSDK = require('wunderlist');
var wunderlistAPI = new WunderlistSDK({
  'accessToken': 'a user access_token',
  'clientID': 'your client_id'
});

wunderlistAPI.http.lists.all()
  .done(function (lists) {
    /* do stuff */
  })
  .fail(function () {
    console.error('there was a problem');
  });

Source

https://github.com/wunderlist/wunderlist.js