Skip to content

Tags

On this page
On this page

Nodejs Tips

Answers

Delete node_modules folder recursively from a specified path using command line

Delete node_modules folder recursively from a specified path using command line - Stack Overflow

find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +

Get NPM Token

npm token create

Check NPM modules updates

npx npm-check-updates

Update to the latest version:

npx npm-check-updates -u
Edit this page
Last updated on 12/31/2021