ripencli
v0.3.3
Published
Interactive dependency updater for npm, pnpm, and yarn
Downloads
2,161
Maintainers
Readme
ripen
Interactive dependency updater for npm, pnpm, yarn, and bun
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@latestUsage
# Check current project
ripen
# Check global packages (scans npm, pnpm, and yarn)
ripen -g
# Help
ripen --helpControls
| 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
- Reads your
package.jsonand checks each dependency against the npm registry directly - Detects your package manager from the lock file (
bun.lock,pnpm-lock.yaml,package-lock.json, oryarn.lock) for running updates - Shows outdated packages in a colorful interactive list
- Press
von any package to pick a specific version from the npm registry - Press
cto see GitHub release notes between your current and target version - 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
