View on GitHub

TVRage JSON

A node.js API for the TVRage web services

Download this project as a .zip file Download this project as a tar.gz file

TV Rage JSON

A node.js API for the TVRage web services; as per the name, all responses are JSON.

Installation

npm install tvragejson

Usage

var TVRage = require("tvragejson");

// Search for a show by name, returning the first match.
TVRage.search("The Big Bang Theory", function(response) {
    console.log(response["Results"]["show"][0]);
});

// Get information for a particular show - in this case we
// are using the show ID for "The Big Bang Theory".
TVRage.search("8511", function(response) {
    console.log(response);
});

Supported methods

Contributing

All contributions are welcome, feel free to fork master, make your changes and open a pull request.

Grunt is used with the JSHint and Watch plugins. To get up and running with grunt you need to do the following:

Upon making any code changes, make sure you run grunt test from within the project's directory to verify that there are no errors (this is done using the JSHint plugin mentioned above) - if there are any errors, make all necessary changes before opening a pull request.

Changelog

v0.1.3

v0.1.2

v0.1.1

License

Licensed under the MIT License