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

gh-sift

v0.1.0

Published

Local-first GitHub inbox organizer for maintainers and heavy contributors

Readme

Sift

Sift is a local-first GitHub inbox organizer for people who live in pull requests and issues.

GitHub notifications are good at collecting activity and weak at prioritizing it. Sift pulls your inbox and adjacent repo activity into a local SQLite database, classifies it with explicit rules, and gives you a browser UI to work through it by signal instead of by noise.

Package name note: the npm package is gh-sift because sift is already taken on npm. The installed command is still sift.

Layers

  • Needs You: review requests, assignments, and your open work
  • Your Circle: maintainer activity on repos you own or contribute to
  • Your Repos: non-maintainer activity on repos you own
  • Interesting: mentions, high-engagement threads, and hotter starred-repo activity
  • Everything Else: background activity and lower-signal starred-repo activity

Why local-first

  • your data stays on your machine
  • search runs locally against SQLite FTS
  • setup is simple: one server, one browser UI, one GitHub token

Semantic ranking and richer filtering can come later. The current goal is to make the non-AI baseline opinionated, useful, and trustworthy.

Platforms

Sift is intended to run locally on:

  • macOS
  • Linux
  • Windows

On Linux, secure token storage uses Secret Service when available. On Windows, it uses the Windows Credential Vault. On macOS, it uses Keychain. If no secure credential store is available, Sift falls back to local config storage.

Requirements

  • Node.js 22+
  • npm

On Apple Silicon, use native arm64 Node. If node -p process.arch prints x64, you are running under Rosetta and native modules like better-sqlite3 may break.

Install

npm install -g gh-sift
sift

Then open the local URL printed by the server, usually http://127.0.0.1:4185.

If that port is busy, Sift will automatically move to the next available local port.

The first sync can take a bit depending on your notification volume and repo graph.

If you prefer not to install globally:

npx gh-sift

Apple Silicon note

Run npm install -g gh-sift --build-from-source only if you hit a better-sqlite3 architecture mismatch after switching between native and Rosetta terminals.

GitHub token

Sift expects a GitHub personal access token with:

  • notifications
  • read:user
  • repo

Sift stores the token in:

  • macOS: Keychain
  • Linux: Secret Service
  • Windows: Credential Vault

If secure storage is unavailable, it falls back to the local config file in ~/.config/sift/config.json.

On Windows, config falls under %APPDATA%\\Sift.

Source development

git clone https://github.com/vignesh07/sift.git
cd sift
npm install
npm start
npm run dev
npm run dev:web
npm run build
npm test

Environment

  • PORT or SIFT_PORT: preferred local server port
  • SIFT_OPEN_BROWSER=0: do not auto-open a browser tab on startup

Current scope

Included now:

  • local sync from GitHub notifications and search
  • layered prioritization UI
  • local full-text search across title, repo, author, and labels
  • periodic background sync
  • local SQLite persistence
  • secure token storage on macOS, Linux, and Windows when OS services are available

Not included yet:

  • semantic search or embeddings
  • saved views and deeper filters
  • multi-account support
  • hosted or collaborative mode

License

MIT