Performance: NestJS CLI installation
LOW IMPACT
This affects the initial setup time and bundle size of your NestJS project, impacting how quickly you can start development and build your app.
npm install -g @nestjs/cli@latest
npm install -g @nestjs/cli@latest --force
| Pattern | Setup Time | Network Usage | Disk Usage | Verdict |
|---|---|---|---|---|
| Global install with --force | Longer due to forced reinstall | High due to repeated downloads | Larger global package size | [X] Bad |
| Global install without --force | Fast, one-time install | Low, cached locally | Minimal global package size | [OK] Good |
| Using npx each time | Slow, downloads every run | High, repeated network calls | No global disk usage | [!] Bad |