
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A zero-config, opinionated monorepo management tool.
Bun is required to run monoverse.
# Install Bun (macOS, Linux, WSL)
curl -fsSL https://bun.sh/install | bash
Monoverse works out of the box with any monorepo. No configuration needed.
# Install
npm install -g monoverse
# Run from anywhere in your monorepo
monoverse ls
Monoverse auto-detects your package manager (pnpm, yarn, npm, bun) and discovers all workspaces automatically.
| Command | Description |
|---|---|
| Explore | |
ls | List all workspaces in a tree structure |
| Dependency Management | |
add <pkg> | Add a dependency to the current workspace |
rm <pkg> | Remove a dependency from the current workspace |
| Lint & Fix | |
lint | Check for issues across all workspaces |
fix | Auto-fix detected issues |
format | Format all package.json files |
| TUI | |
tui | Terminal UI (coming soon) |
List all workspaces in a tree structure.
monoverse ls
Workspaces (12)
my-monorepo
├── apps
│ ├── web (web)
│ └── mobile (mobile)
└── packages
├── ui (@acme/ui)
└── utils (@acme/utils) (cwd)
Add a dependency to the current workspace.
monoverse add lodash
monoverse add -t dev vitest
monoverse add -v 5.0.0 lodash
| Option | Description |
|---|---|
-t, --type | dependency (default), dev, peer, optional |
-v, --version | Specific version to install |
Syncs to existing versions in other workspaces when available.
Remove a dependency from the current workspace.
monoverse rm lodash
Check for issues across all workspaces.
monoverse lint
Detects:
^1.0.0, ~1.0.0)Auto-fix detected issues.
monoverse fix
monoverse fix -i
| Option | Description |
|---|---|
-i, --interactive | Resolve version mismatches interactively |
Format all package.json files.
monoverse format
For managing multiple monorepos together, create a monoverse.json:
{
"projects": [".", "../other-monorepo", "./packages/*"]
}
Accepts direct paths and glob patterns.
MIT
FAQs
A zero-config, opinionated monorepo management tool.
We found that monoverse demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.