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

ripencli

v0.3.3

Published

Interactive dependency updater for npm, pnpm, and yarn

Downloads

2,161

Readme

ripen

Interactive dependency updater for npm, pnpm, yarn, and bun

npm version node GitHub License

ripen banner

Features

  • Interactive TUI — navigate packages with arrow keys, select with space
  • Version picker — choose any specific version from the npm registry, not just latest
  • Changelog viewer — see GitHub release notes before you update
  • npm, pnpm, yarn & bun — auto-detects your package manager
  • Global packages — check and update global installs across all* package managers
  • Self-update — notifies you when a new version of ripen is available
  • Major bump warnings — highlights potentially breaking updates
  • Scope grouping — optionally group scoped packages (e.g. @heroui/*) together
  • Frequency sorting — packages you update often can be surfaced to the top

Install

npm install -g ripencli@latest
# or
pnpm add -g ripencli@latest
# or
yarn global add ripencli@latest
# or
bun add -g ripencli@latest

Usage

# Check current project
ripen

# Check global packages (scans npm, pnpm, and yarn)
ripen -g

# Help
ripen --help

Controls

| Key | Action | | ------- | ------------------------------ | | ↑ ↓ | Navigate packages | | space | Toggle select | | v | Pick specific version | | c | View changelog / release notes | | enter | Update selected packages | | s | Open settings | | esc | Cancel / go back |

How it works

  1. Reads your package.json and checks each dependency against the npm registry directly
  2. Detects your package manager from the lock file (bun.lock, pnpm-lock.yaml, package-lock.json, or yarn.lock) for running updates
  3. Shows outdated packages in a colorful interactive list
  4. Press v on any package to pick a specific version from the npm registry
  5. Press c to see GitHub release notes between your current and target version
  6. Select the ones you want and press enter — ripen runs the update commands for you

Settings

Press s to open the settings screen. Settings are persisted at ~/.config/ripen/config.json.

| Setting | Default | Description | | ---------------------------- | ------- | ------------------------------------------------------------ | | Sort by update frequency | Off | Packages you update often appear at the top | | Separate dev dependencies | On | Show dependencies and devDependencies in separate groups | | Enable scope grouping | Off | Group scoped packages under their scope prefix | | Show grouped scopes on top | Off | Grouped scopes appear before ungrouped packages | | Grouped scopes | — | List of scopes to group (e.g. @heroui, @radix-ui) |

When using ripen -g, all available package managers (npm, pnpm, yarn) are checked in parallel so you see every global package in one place. Bun is not included in global checking because it doesn't provide a JSON output for its outdated command.

License

MIT