0.2.4 • Published 9 years ago

node-tms-onconnect v0.2.4

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

TMS OnConnect API

This library is a simple wrapper for the TMS OnConnect API by Gracenote. Each method returns a "thenable" object.

Usage

This library is build on top of Bluebird and uses promises heavily.

var api = new Gracenote(api_key);

api.lineups.findLineup().then(function(response){
    
    //... do something with response.

});

//or

api.lineups.findLineup()
    .then(doSometing)
    .then(doSometingElse)
    .then(finallyDoSometing);

Implemented:

  • Lineups
  • Stations

TODO:

  • Public Plan Methods
  • Programs
  • Series
  • Movies On TV
  • Movies In Theatres
  • Movies Trailers
  • Sports
  • Celebrities
  • Video and Social APIs
0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago