JSPM

kat-api-json

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q30402F
  • License MIT

A small library for running basic queries on Kickass Torrents' API

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);

});