Package Exports
- kat-api-json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (kat-api-json) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
#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);
});