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

@fishstar/rss-kit

v1.0.0

Published

RSS subscription management CLI tool

Downloads

87

Readme

RSS Kit

RSS 订阅管理 CLI 工具

安装

pnpm install
pnpm build

使用

1. 订阅管理

添加订阅:

rss-kit add -n "Hacker News" -u "https://hnrss.org/frontpage" -c "tech"

查看所有订阅:

rss-kit list

按分类过滤:

rss-kit list -c tech

更新订阅:

rss-kit update -i <subscription-id> -n "New Name"

删除订阅:

rss-kit remove -i <subscription-id>

2. 同步 RSS 源

同步所有订阅��

rss-kit sync

同步特定订阅:

rss-kit sync -i <subscription-id>

3. 查看文章

交互式浏览所有文章:

rss-kit view

支持的快捷键:

  • 上一篇文章
  • 下一篇文章
  • 向前跳 10 篇
  • 向后跳 10 篇
  • Home 跳到第一篇
  • End 跳到最后一篇
  • Q 退出

从指定位置开始:

rss-kit view -i 10

查看特定订阅的文章列表:

rss-kit articles -i <subscription-id>

限制显示数量:

rss-kit articles -i <subscription-id> -l 10

阅读具体文章:

rss-kit read -i <subscription-id> -a 1

4. Shell 集成

添加 zsh 别名和自动补全:

rss-kit addHint
source ~/.zshrc

这会添加:

  • 别名:rkrss-kit
  • Tab 自动补全所有命令和选项

之后可以使用:

rk add -n "Blog" -u "https://example.com/feed"
rk sync
rk articles -i <id>

数据存储

所有数据存储在当前目录的 .rss-kit 文件夹中:

  • subscriptions.json - 订阅列表
  • cache/ - 各订阅的文章缓存