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 🙏

© 2026 – Pkg Stats / Ryan Hefner

delugefinder

v1.0.0

Published

A terminal app that finds torrents and sends them to Deluge.

Readme

Finding a torrent these days sucks. One site is a minefield of fake download buttons. Another hides the real link under a popup that spawns two more tabs. And after all that, half the results are dead, zero seeders.

DelugeFinder finds torrents and sends them to Deluge, right from your terminal. One search checks every indexer configured in your own Prowlarr instance at once, and whatever you pick gets sent straight to your own Deluge instance over its Web UI — DelugeFinder itself never downloads anything.

Get started

  1. Install Node (from nodejs.org) and have a Deluge Web UI reachable (local or remote).

  2. Open your terminal.

  3. Start it:

    npx dlfi

DelugeFinder opens straight to a search bar: search for what you want, or paste in a magnet link or a bare infohash. Press o once to point it at your Deluge Web UI (address + password) and p to point it at your Prowlarr instance (address + API key); both are saved locally after that. From there it's all keypresses, nothing to memorize, and ? brings up the full list anytime.

Finding something

Type what you're looking for and press Enter. Results stream in from every source as they answer, tagged with size and how many people are sharing each one, so you can see what'll come down fast. Arrow to what you want and press d to send it to Deluge, or y to just copy the magnet link instead.

What it searches

DelugeFinder has no built-in source list — every source is an indexer discovered live from your own Prowlarr instance. Add Prowlarr once (see below) and every indexer configured there shows up as its own source, grouped by category (Games, Movies, TV, Anime). Until Prowlarr is connected, searches simply return nothing.

Adding a Deluge connection

Press o anywhere in the app to open the Deluge connection panel:

  1. URL — your Deluge Web UI address, e.g. http://localhost:8112.
  2. Press Tab (or Enter) to move to password — the Deluge Web UI password.
  3. Press Enter to save, or Esc to cancel without saving.

The connection is saved locally to your config file and reused on every future start. Once it's set, d on any result sends its magnet link straight to that Deluge instance.

Adding a Prowlarr connection

Press p anywhere in the app to open the Prowlarr connection panel:

  1. URL — your Prowlarr address, e.g. http://localhost:9696.
  2. Press Tab (or Enter) to move to API key — found in Prowlarr under Settings → General → Security.
  3. Press Enter to save, or Esc to cancel without saving.

Once saved, DelugeFinder loads your configured indexers in the background and merges their results into every search.

Contributing

To run or work on DelugeFinder locally:

  1. Clone the repository and open the folder.
  2. Install dependencies:
    npm install
  3. Run the development version:
    npm run dev
    Or build it and run the bundled version:
    npm run build
    npx dlfi

Privacy

DelugeFinder itself never opens a connection to the torrent network — it only searches, then hands the chosen magnet link to your own Deluge instance over its Web UI. Everything after that (downloading, seeding, where files land) is Deluge's territory, configured however you already run it.