Skip to content

Stremio Bootstrapper Addons !!install!! | EXTENDED | WORKFLOW |

const express = require('express'); const app = express(); const ADDON_SETS = basic: [ "https://torrentio.strem.fun/manifest.json", "https://opensubtitlesv3.strem.fun/manifest.json" ], full: [ "https://torrentio.strem.fun/manifest.json", "https://cyberflix.strem.fun/manifest.json", "https://opensubtitlesv3.strem.fun/manifest.json", "https://realdebrid.strem.fun/manifest.json" ] ;

// 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); ); stremio bootstrapper addons

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. const express = require('express'); const app = express();