Skip to content

Latest commit

 

History

History
14 lines (7 loc) · 332 Bytes

File metadata and controls

14 lines (7 loc) · 332 Bytes

NPM and Node Modules Housekeeping

To keep your local environment clean, it could be sometimes a good idea to just run:

npm clean-install

and get rid of all those piled up and unused packages you collected.

If you are using a shrinkwrap.json you could also just run

npm ci

and install the dependencies from there.