Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/openbytedev/rmdir-recursive-async
- Owner: OpenByteDev
- License: mit
- Created: 2018-08-23T14:11:10.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-29T07:29:50.000Z (about 6 years ago)
- Last Synced: 2024-11-08T07:42:50.676Z (8 days ago)
- Topics: async, delete, delete-files, directory, nodejs, npm-package, promise, recursive, remove, rmdir
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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');
```