1 min read
I want to know a command that can remove the node module cache.
Naman Sharma Selected answer as best December 26, 2020
1 min read
Hi @namansharma, You can use following command in the terminal to remove npm or node module cache from the project.
rm -rf node_modules/.cache/
This command worked fine.
Naman Sharma Selected answer as best December 26, 2020