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)

11 lines (9 loc) 282 B
const ProviderManager = require('./lib/ProviderManager'); function createApi(...providers) { const providerManager = new ProviderManager(); if (providers.length > 0) { providerManager.loadProviders(...providers); } return providerManager; } module.exports = createApi;