
Product
Introducing Manifest Alerts
Socket now detects supply chain risks in project manifests, starting with missing lockfiles that can make dependency installs non-reproducible.
@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
The npm package @stremio-addon/node-express receives a total of 148 weekly downloads. As such, @stremio-addon/node-express popularity was classified as not popular.
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.

Product
Socket now detects supply chain risks in project manifests, starting with missing lockfiles that can make dependency installs non-reproducible.

Research
/Security News
The trojanized extensions use TinyGo-compiled WebAssembly and Solana transaction memos to resolve command-and-control infrastructure.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.