1.0.3 • Published 8 years ago

search-kat.ph v1.0.3

Weekly downloads
5
License
ISC
Repository
github
Last release
8 years ago

Search kat.ph Build Status

Installation

npm install --save search-kat.ph

Usage

var search = require('search-kat.ph');

search('foobar').then(function(results) {
	// results is an array of objects that look like:
	{
		name: String, // Name of torrent,
		category: String, // Category it's in
		size: String, // Size of file
		files: Number, // Number of files
		age: String, // Age of result
		seeds: Number, // Number of seeds
		leech: Number, // Number of leeches
		magnet: String, // Magnet link
		torrent: String // Torrent URL
	}
});