
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@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 with CORS enabled.
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 1,442 weekly downloads. As such, @stremio-addon/node-express popularity was classified as 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.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.