30th November 2022

npm ci

I learnt about an interesting npm command npm ci. It's mostly used for automated environments for example deployments. Basically what this command does is a clean install of your project. It installs a project at a time so you can not use it to install individual dependencies eg npm ci next ❌. Read more about npm ci