Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

command-line-helpers - for cmd and bash

uninstall all node dependencies from project dir

windows: for /f %f in ('dir node_modules /b') do echo npm uninstall %f && npm uninstall %f

bash: for package in `ls node_modules`; do npm uninstall $package; done;

About

Command line helpers - for cmd and bash

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors