UNPKG

torrent-search-api

Version:

Yet another node torrent scraper based on x-ray. (Support iptorrents, torrentleech, torrent9, Yyggtorrent, ThePriatebay, torrentz2, 1337x, KickassTorrent, Rarbg, T411.si, TorrentProject)

14 lines (11 loc) 309 B
const cloudscraper = require('cloudscraper'); function makeDriver(opts) { return function driver(context, callback) { var url = context.url; opts.url = url; cloudscraper.request(opts, function (err, response, body) { return callback(err, body) }); } } module.exports = makeDriver;