delete all node_modules in windows code example
Example 1: delete node_modules
rm -rf node_modules/
yarn install
Example 2: delete node_modules
rm -r node_modules
// run this from git bash
rm -rf node_modules/
yarn install
rm -r node_modules
// run this from git bash