Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/maddhruv/clean-deps

Clean :shower: all node dependencies i.e. node_modules
https://github.com/maddhruv/clean-deps

Last synced: 5 days ago
JSON representation

Clean :shower: all node dependencies i.e. node_modules

Awesome Lists containing this project

README

        

# clean-deps

Clean :shower: all node dependencies i.e. node_modules

- :dolls: Works fantastically with mono-repos
- :leftwards_arrow_with_hook: can be hooked with [CLI](#CLI)
- :package: use as a [module](#modules) to get all node_modules dirs

## Install

CLI

`npm i clean-deps -g`

or

Module

`npm i clean-deps`

## Usage

### CLI

Add as an npm-script

```js
{
"clean-deps": "clean-deps"
}
```

### Modules

```js
const findDirs = require("clean-deps");

const results = findDirs();
```