Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/openbytedev/rmdir-recursive-async

Delete a directory recursively asynchronously
https://github.com/openbytedev/rmdir-recursive-async

async delete delete-files directory nodejs npm-package promise recursive remove rmdir

Last synced: about 3 hours ago
JSON representation

Delete a directory recursively asynchronously

Awesome Lists containing this project

README

        

# rmdir-recursive-async

[![npm version](https://badge.fury.io/js/rmdir-recursive-async.svg)](https://www.npmjs.com/package/rmdir-recursive-async) [![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://opensource.org/licenses/MIT)

Delete a directory recursively asynchronously

### Installation
```bash
npm install rmdir-recursive-async
```

### Usage
```js
const rmdirRecursiveAsync = require('rmdir-recursive-async');

rmdirRecursiveAsync('some directory');
```