New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kickass-torrent

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kickass-torrent

kickass.to json API wrapper

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

node-kickass

Node kickass.to json API wrapper

npm install kickass-torrent --save

Examples

default options:

var kickass=require('kickass-torrent')
kickass('test search',function(err, response){
    console.log(err, response)
})

all options:

var kickass=require('kickass-torrent')
kickass({
    q: 'test',//actual search term
    field:'seeders',//seeders, leechers, time_add, files_count, empty for best match
    order:'desc',//asc or desc
    page: 2,//page count, obviously
    url: 'https://kat.cr',//changes site default url (https://kat.cr)
},function(e, data){
    //will get the contents from
    //http://kickass.to/json.php?q=test&field=seeders&order=desc&page=2
    if(e)
        return console.log(e)
    console.log(data)//actual json response
})

Keywords

FAQs

Package last updated on 01 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc