Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 517 Bytes

README.markdown

File metadata and controls

28 lines (20 loc) · 517 Bytes

Nodejs-TvRage

Nodejs client to work with http://www.tvrage.com services. To get informations about tv shows.

Version 0.2.0 initial release. Just for testing two web service features. There are 3 methods implemented:

  • search
  • show info
  • episode list

Install

npm install nodejs-tvrage

Simple usage

var TvRage = require('nodejs-tvrage'),
    tvrage = new TvRage(),
    util = require('util');

tvrage.search('buffy', function(res) {
    console.log(util.inspect(res[0]));
});