Stremio Bootstrapper: Addons _verified_
app.listen(7000);
transportUrl: "https://cyberflix.strem.fun/manifest.json", transportName: "http" , stremio bootstrapper addons
// Manifest endpoint app.get('/manifest.json', (req, res) => const manifest = id: "com.example.stremio-bootstrapper", version: "1.0.0", name: "Example Bootstrapper", description: "Installs Torrentio, Cyberflix, and OpenSubtitles", resources: [], // bootstrappers provide no streams/catalogs/meta types: [], // no content types catalogs: [], // no catalogs idPrefixes: [], // no id prefixes addons: BOOTSTRAP_ADDONS ; res.json(manifest); ); // Manifest endpoint app.get('/manifest.json'
app.get('/manifest.json', (req, res) => let addons = [...BOOTSTRAP_ADDONS]; if (req.query.include === 'debrid') addons.push( transportUrl: "https://realdebrid.strem.fun/manifest.json", transportName: "http" ); const manifest = id: "com.example.stremio-bootstrapper"
const PORT = process.env.PORT || 7000; app.listen(PORT, () => console.log( Bootstrapper running on http://localhost:$PORT ); ); You can accept query parameters to modify the list of bootstrapped addons.