A dependency-free Node.js Stremio stream addon that resolves IMDb/TMDB ids and fetches MovieBox streams with signed MovieBox API requests.
npm startThe addon manifest is available at:
http://127.0.0.1:7000/manifest.json
This project does not require native modules or npm dependencies, so it can run directly in Termux on Android.
-
Install Termux from F-Droid.
-
Install Node.js and Git:
pkg update -y pkg install -y nodejs git
-
Clone or copy this repository onto the phone.
-
Start the addon:
npm run termux
Or run the script directly:
./scripts/start-termux.sh
-
In Stremio on the same phone, install the addon with:
http://127.0.0.1:7000/manifest.json -
From another device on the same Wi-Fi network, find your phone IP and use:
http://PHONE_IP:7000/manifest.json
Change the port:
PORT=8080 npm run termuxBind to localhost only:
HOST=127.0.0.1 npm run termuxKeep Termux running while the screen is off:
termux-wake-lock
npm run termuxThe project includes api/addon.js and vercel.json, so Vercel rewrites addon routes to the serverless handler.
npm run check
npm test