Npm perf tip: Use npm ci instead of npm install for 1


Npm perf tip: Use npm ci instead of npm install for
1. Your CI server
2. Anytime you want to delete node_modules, then npm install.

Why?
- It’s up to 2x faster
- It automatically removes node_modules if it exists.

More: https://blog.npmjs.org/post/171556855892/introducing-npm-ci-for-faster-more-reliable

View original on X