# mkdir-promise

> fs.mkdir implementation with es6 Promise

Latest version **1.0.0** (published 2015-11-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install mkdir-promise
pnpm add mkdir-promise
yarn add mkdir-promise
bun add mkdir-promise
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2015-11-10 |
| First published | 2015-06-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | zbinlin |
| Maintainers | zbinlin |
| Keywords | mkdir, promise |

## Links

- npm: https://www.npmjs.com/package/mkdir-promise
- Repository: https://github.com/zbinlin/mkdir-promise
- Homepage: https://github.com/zbinlin/mkdir-promise#readme
- Issues: https://github.com/zbinlin/mkdir-promise/issues
- npm.io page: https://npm.io/package/mkdir-promise

## Alternatives

- [@commercetools/sync-actions](https://npm.io/package/@commercetools/sync-actions.md) — 25.1K weekly downloads
- [cwait](https://npm.io/package/cwait.md) — 21.4K weekly downloads
- [@ledgerhq/hw-app-cosmos](https://npm.io/package/@ledgerhq/hw-app-cosmos.md) — 4.2K weekly downloads
- [@financial-times/o-loading](https://npm.io/package/@financial-times/o-loading.md) — 2.8K weekly downloads
- [fa](https://npm.io/package/fa.md) — 185 weekly downloads

## Recent versions

- 1.0.0 (latest) — 2015-11-10
- 0.0.5 — 2015-11-10
- 0.0.4 — 2015-10-01
- 0.0.3 — 2015-06-15
- 0.0.2 — 2015-06-03
- 0.0.1 — 2015-06-02

## README

# mkdir-promise

fs.mkdir implementation with es6 Promise, support make directory recursively,
just like `mkdir -p`.


## Install

```shell
npm install mkdir-promise
```


## Usage

```javascript
var mkdir = require("mkdir-promise");
mkdir("/a/b/c/d").then(function () {
    console.log("success!");
}, function (ex) {
    console.error(ex);
});
```

---
_Source: https://npm.io/package/mkdir-promise · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
