https://github.com/ovidiubute/rm-node-modules
Simple utility to recursively delete all node_modules directories
https://github.com/ovidiubute/rm-node-modules
Last synced: 3 days ago
JSON representation
Simple utility to recursively delete all node_modules directories
- Host: GitHub
- URL: https://github.com/ovidiubute/rm-node-modules
- Owner: ovidiubute
- Created: 2017-04-27T20:06:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T20:22:47.000Z (over 8 years ago)
- Last Synced: 2025-03-29T15:14:31.563Z (6 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## rm-recur-node-modules
Recursively deletes all node_modules found in the current working directory.
This package executes the following command synchronously:
```shell
find . -name "node_modules" -exec rm -rf '{}' +
```## Usage
```shell
npm install -g rm-recur-node-modules
rm-node-modules
```## License
MIT