better-pm
v0.3.1
Published
Better CLI for package manager operations (especially in monorepos)
Downloads
502
Readme
pm
A CLI for smarter package manager operations (especially in monorepos).
- Package manager agnostic — works with pnpm and bun, no need to remember which one your project uses
- Scoped installs by default — automatically installs only the current package, no more accidental full-monorepo installs
- Easy navigation — jump to any workspace package from anywhere
https://github.com/user-attachments/assets/3d5496a9-91be-47dc-9e01-db8c5052c7c5
Install
brew install fdarian/tap/better-pmHomebrew is recommended — it installs a native binary, so shell completions resolve in ~60ms.
npm install -g better-pmThen activate shell integration:
# Add to your .zshrc (or .bashrc)
eval "$(pm activate zsh)" # or bashCommands
pm i Install (monorepo-aware)
pm i -F <pkg> Install specific workspace package(s)
pm add <pkg> Add a dependency (-D for dev)
pm remove <pkg> Remove a dependency
pm ls List workspace packages as a tree
pm cd <pkg> cd into a workspace packageMonorepo-aware install
From inside a workspace package, pm i automatically scopes to that package:
pm i # installs only the current package
pm i -F @myapp/web # target a specific package
pm i -F @myapp/web -F @myapp/api # target multipleFrom the monorepo root, pm i won't blindly install everything — it shows a warning and lists your workspace packages:
[WARNING] You are at the monorepo root. This will install ALL packages.
Workspace packages:
├── packages/
│ ├── core "@myapp/core"
│ └── utils "@myapp/utils"
└── apps/
└── web "@myapp/web"
To install a specific package:
pm i -F <package-name>
To install everything:
pm i --sureWorkspace navigation
List all workspace packages as a tree:
pm lsJump to any package directory (requires shell integration):
pm cd @myapp/web # cd into a workspace package
pm cd # cd to monorepo root