
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
@stremio-addon/node-express
Advanced tools
Node runtime with Express.js for the Community Stremio Addon SDK
This package is part of Stremio-Community/stremio-addon-sdk.
Node.js + Express runtime adapter for the Community Stremio Addon SDK.
pnpm add @stremio-addon/node-express express
If using TypeScript:
pnpm add -D @types/express
import express from "express";
import { getRouter } from "@stremio-addon/node-express";
import { AddonBuilder } from "@stremio-addon/sdk";
// Create your addon
const builder = new AddonBuilder({
id: "com.example.myaddon",
version: "1.0.0",
name: "My Addon",
description: "My cool Stremio addon",
resources: ["stream"],
types: ["movie", "series"],
catalogs: [],
});
builder.defineStreamHandler(async ({ type, id }) => {
return {
streams: [
{
url: "https://example.com/stream.mp4",
title: "Example Stream",
},
],
};
});
const addonInterface = builder.getInterface();
// Create Express app
const app = express();
// Mount the addon router
app.use(getRouter(addonInterface));
// Start the server
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Addon available at http://localhost:${PORT}/manifest.json`);
});
getRouter(addonInterface)Creates an Express router configured to serve your addon.
Parameters:
addonInterface - The addon interface from builder.getInterface()Returns: Express Router instance
See the hello-world example for a complete working example.
@stremio-addon/sdk - Core SDK package@stremio-addon/node - Basic Node.js runtimeMIT
FAQs
Node runtime with Express.js for the Community Stremio Addon SDK
We found that @stremio-addon/node-express demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.