npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

stremio-addons-client

v1.7.0

Published

An example client to the Stremio add-ons protocol, similar to Stremio's Discover

Downloads

56

Readme

stremio-addons-client

An example client to the Stremio add-ons protocol, similar to Stremio's Discover. Because the desktop app is nothing more but a client to the add-ons system, this is basically an open-source Stremio. Stremio add-ons client

What's this?

It's an example client of the stremio-addons system, which is the glue between Stremio and the add-ons. It mimics Stremio's Discover interface, and shows all available streams gathered from all add-ons for a selected movie/series/channel/etc.

The main purpose of this is to aid developers in creating their own Stremio add-on by showing them how the actual app(s) utilize the add-on client.

How to run

git clone http://github.com/Stremio/stremio-addons-client
cd stremio-addons-client
npm install
npm start
# open browser at http://localhost:9900
Open your browser at http://localhost:9900/#?addon=ADDON_URL for your own end-point

What are Stremio add-ons

Stremio add-ons extend Stremio with content.

That means either adding items to Discover or providing sources to stream content farom.

Unlike regular software plugins, Stremio addons do not run inside Stremio, but instead are hosted separately accessed through HTTP over network. You can think of them as RSS on steroids. Multiple addons can be enabled, providing you more content, without installation or security risks.

Does it use the same logic as the desktop app?

Yes, the absolutely same logic, except:

  1. Stremio has a user log-in, and utilizes only the enabled add-ons by the user. This utilizes all add-ons served by the tracker.
  2. The desktop app caches received results in linvodb, while this always loads them on demand

But all in all, if an add-on works here, it should work on the desktop app and the mobile app.

Can I see example add-ons?

Hello World add-on

Vodo add-on

Guidebox add-on

Filmon.tv add-on

You can see all known hosted Stremio add-ons at addons.strem.io

How to create my own add-on?

Follow the guidelines here.

How to use this to test my add-on

You can and should use this module to test your add-on before trying it in Stremio, because this module is open-source and you can see what calls it makes to your add-on and why.

To enable your add-on, add it's local endpoint (e.g. http://localhost:5555) via the bar on the bottom of the Add-ons tab:

Enable custom add-on