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

@profullstack/rssamplifier

v0.4.0

Published

CLI for rssamplifier.com — find feeds by topic, search the directory, export OPML, submit blogs

Downloads

162

Readme

rssamplifier CLI

The RSS Amplifier directory, from a terminal. Find feeds by subject, search tens of thousands of independent blogs, export OPML, submit a site. No key, no account.

curl -fsSL https://rssamplifier.com/install.sh | sh

That drops one file at ~/.local/bin/rssamp. Node 22 or newer is the only requirement — there are no dependencies, so there is nothing else to install and nothing to audit but the one file. Set RSSAMP_BIN to install elsewhere.

It manages itself from there:

rssamp update        # pull the latest over itself
rssamp remove        # show what uninstalling would delete
rssamp remove --yes  # actually do it

update stages the download beside the target and renames it into place, so an interrupted upgrade leaves the working copy working. remove deletes the two binaries and nothing else — there is no config, cache or state anywhere. Neither touches a file it did not write, and both decline when run out of a checkout or an npm install rather than guessing.

Start here

rssamp topics homelab              # what does the directory cover about this?
rssamp topic homelab               # the feeds filed under one subject
rssamp opml --topic homelab > homelab.opml
rssamp urls --topic homelab        # one feed URL per line

Run rssamp --help for the rest, or read https://rssamplifier.com/cli.

For scripts and agents

Every command takes --json and writes to stdout. Exit codes are meant to be branched on: a submission where nothing was accepted exits non-zero, as does a urls that matched no feeds. A search that legitimately found nothing exits zero — the directory not covering a subject is an answer, not a failure.

rssamp search "agentic coding" --json | jq -r '.posts[].url'
rssamp topic homelab --json | jq -r '.feeds[].feedUrl'

An agent that can call MCP tools should use https://rssamplifier.com/mcp instead: same data, no subprocess, and the tools describe their own arguments.

Pointing it elsewhere

--api or $RSSAMP_API changes the deployment it talks to:

RSSAMP_API=http://localhost:3000 rssamp list --limit 5

Development

This package is the whole program in src/index.js — one file, importable as a module and executable on its own. The site serves that exact file at /cli/rssamp, which is what the installer downloads, so there is no build step and no artifact to keep in sync.

pnpm test

MIT.