JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 849269
  • Score
    100M100P100Q56160F
  • License ISC

Promise version of mkdirp

Package Exports

  • mkdirp-promise

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mkdirp-promise) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

mkdirp-promise version License

Promise version of mkdirp:

Like mkdir -p, but in node.js!

Build Status Downloads Code Climate Coverage Status Dependencies

Install

npm install --save mkdirp-promise

API

var mkdirp = require('mkdirp-promise')

mkdirp(dir, [, options])

pattern: String
options: Object or String
Return: Object (Promise)

When it finishes, it will be fulfilled with the first directory made that had to be created, if any.

When it fails, it will be rejected with an error as its first argument.

mkdirp('/tmp/foo/bar/baz')
  .then(function (made) {
    console.log(made) //=> '/tmp/foo'
  })

  .catch(function (err) {
    console.error(err)
  })
})

options

The option object will be directly passed to mkdirp.

License

ISC License © Ahmad Nassri