UNPKG

torrent-search-api

Version:

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

12 lines (10 loc) 228 B
const makeDriver = requestFn => ({ url }, callback) => { requestFn(url) .then(response => { callback(null, response.body); }) .catch(error => { callback(error); }); }; module.exports = makeDriver;