- All three package managers?
- Yes — npm, yarn (classic and berry), and pnpm. Common commands shown in all three for easy translation.
- Does it cover workspaces?
- Yes — monorepo workspaces in all three managers. The syntax differs slightly; the cheatsheet shows equivalents.
- What about security auditing?
- Yes — npm audit, yarn audit, pnpm audit, and how to interpret results. Plus when to ignore non-exploitable warnings.
- Which one should I pick?
- pnpm for monorepos and disk space (uses hard links). yarn berry for strict dependency resolution. npm for simplicity — it's the default and widely supported.