Stremio Bootstrapper Addons Guide

const addonBuilder, serveHTTP = require('stremio-addon-sdk'); const builder = new addonBuilder( id: "org.example.sdk-bootstrapper", version: "1.0.0", name: "SDK Bootstrapper", resources: [], types: [], catalogs: [], addons: [ transportUrl: "https://torrentio.strem.fun/manifest.json", transportName: "http" ] );

res.json( id: "com.example.configurable-bootstrapper", version: "2.0.0", name: "Configurable Bootstrapper", description: Installs $set addon set , resources: [], types: [], catalogs: [], addons ); ); 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. serveHTTP = require('stremio-addon-sdk')

transportUrl: "https://cyberflix.strem.fun/manifest.json", transportName: "http" , name: "SDK Bootstrapper"

app.listen(7000);