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

@clype/blink

v0.4.0

Published

Fast local-first capture and retrieval CLI (native binary, per-platform bundled)

Readme

Blink

Blink is a capture-first CLI for fast plain-text notes — built in Rust for sub-20ms capture.

One interface

blink <words>     # save a thought (++ prefix), or find one
blink             # keep writing (interactive ›)
blink block       # write more than one line
blink meet        # capture a session
blink help advanced   # reindex, doctor, bench

Principles

  • Capture first — file write before index; notes survive index failures
  • Local-first — markdown in ~/blink, BM25 search offline, no AI required
  • Zero setup — first capture creates ~/blink/notebooks/active/
  • Ambient or silence on capture; content-only search results

Storage

BLINK_HOME overrides ~/blink.

~/blink/notebooks/active/
├── 2026-06-24.md
├── 2026-06-24.md.offset   # sidecar line counter (internal)
├── index.sqlite           # derived FTS5 index
└── index.queue            # async index spool

Hotkeys

Use explicit capture for hotkeys:

blink ++ buy milk

See platform/mac/blink.scpt and platform/win/blink-hotkey.ps1.

Install

Requires Node.js 18+ to install. Blink itself runs as a native binary.

npm install -g @clype/blink
blink ++ hello world

The package bundles the prebuilt binary for every supported OS — no separate binary download or postinstall step. No Cargo or Rust required.

See docs/install.md for npx, migration, and troubleshooting.

Build from source (developers)

Architecture

blink/src/
├── engine/          # Core — capture, recall, maintenance (no user I/O)
│   └── Blink        # Facade used by CLI, tests, and future bindings
├── cli/             # User interaction — routing, prompts, editor, output
├── capture/         # Internal storage writers (used by engine)
├── index/           # Internal FTS5 index (used by engine)
├── retrieval/       # Internal search helpers (used by engine)
└── storage/         # Paths, config, daily files (used by engine)

The CLI layer never writes files or queries SQLite directly — it calls Blink::capture(), Blink::recall(), etc.

Agent-friendly output: pass --json on any command.

Migrate from Blink v0.2 (Node)

Existing ~/blink/ daily files and index.sqlite are compatible. See docs/migration.md.

npm uninstall -g @noodlemind/blink   # old package, if installed
npm install -g @clype/blink          # native binary, bundled per-platform
blink doctor
blink reindex

Performance

See docs/performance.md and docs/blink-speed-report.md. Run blink bench after building.