better-pm
v0.3.6
Published
Better CLI for package manager operations (especially in monorepos)
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
- Clean signal handling —
Ctrl+Cproperly shuts down the entire process tree, no orphaned dev servers - 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
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 package
pm run <script> Run a package.json script
pm <script> Shorthand for pm run-F chains, so you can target multiple workspace packages in one go:
pm i -F @myapp/web -F @myapp/apiConfiguration
Drop a pm.config.json next to your lockfile to configure pm for your project.
Auto-scope installs to the current package
With scopedInstall: true, running pm i from inside a workspace package installs only that package. From the monorepo root, pm i prompts before installing everything:
{
"scopedInstall": true
}[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 -yPaste-friendly add
Copied a command from a README? Just paste it:
pm add "npm install -D something" # automatically extracts -D and the package
pm add "pnpm add foo bar" # works with any package manager command
pm add "bun add -D @scope/pkg" # scoped packages toopm detects pasted npm install, pnpm add, bun add (and their shorthands like npm i) and extracts the packages and -D flag automatically.
Workspace 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