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

@keepgoingdev/cli

v0.1.1

Published

Terminal CLI for KeepGoing. Resume side projects without the mental friction.

Readme

@keepgoing/cli

Terminal CLI for KeepGoing — resume side projects without the mental friction.

Install

# Run without installing
npx @keepgoing/cli status

# Install globally
npm install -g @keepgoing/cli

# Or add to a project
npm install --save-dev @keepgoing/cli

Commands

keepgoing status

Show the last checkpoint for the current project.

KeepGoing · 12 days ago

  Summary:   Refactored auth middleware to support JWT rotation
  Next step: Implement verifyRefreshToken helper in auth.ts
  Branch:    feature/auth-refactor
  Files:     auth.ts, middleware.ts, routes/token.ts (+2 more)

Flags:

  • --cwd <path> — override the working directory
  • --json — output raw JSON of the last checkpoint (for scripting)
  • --quiet — output a single summary line (used by the shell hook)

keepgoing save

Save a new checkpoint interactively. Prompts for:

  1. What did you work on? (required)
  2. What's your next step? (required)
  3. Any blockers? (optional)

Git branch and touched files are auto-detected from the workspace.

keepgoing hook install

Install a shell hook that runs keepgoing status --quiet automatically whenever you cd into a directory that contains .keepgoing/.

Supports zsh and bash. Detected from $SHELL.

keepgoing hook install
# → Reload your shell:
source ~/.zshrc   # or ~/.bashrc

keepgoing hook uninstall

Remove the shell hook from your ~/.zshrc or ~/.bashrc.

keepgoing hook uninstall

Shell Hook Setup

The shell hook gives you zero-friction project context when you enter a project directory.

After running keepgoing hook install and reloading your shell, entering any directory with a .keepgoing/ folder will automatically print:

KeepGoing · 3 days ago · Refactored auth middleware to support JWT rotation

Data Format

Reads and writes the same .keepgoing/ schema used by the VS Code extension:

  • .keepgoing/sessions.json — all checkpoints
  • .keepgoing/state.json — last session state
  • .keepgoing/meta.json — project metadata

Development

From the monorepo root:

npm run build --workspace=apps/cli