1.0.1 • Published 9 years ago

kat-api-json v1.0.1

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

#KAT-API-JSON A simple Node module for fetching data from the Kickass Torrents API in json format.

##Installation

npm install kat-api-json

##Usage Get the most popular entries from a category.

var kat = require("kat-api-json");
kat.mostPopular({
  category: "tv",
  page: 1
},function(err,data){
  if ( err ) {
    throw err;
  }
  
  console.log(data);

});