An open API service indexing awesome lists of open source software.

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

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