5.0.1 • Published 9 years ago
mkdirp-promise v5.0.1
mkdirp-promise

Like mkdir -p, but in node.js!
Install
npm install --only=production --save mkdirp-promiseAPI
const 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(console.log) //=> '/tmp/foo'
.catch(console.error)options
The option object will be directly passed to mkdirp.
:copyright: ahmadnassri.com · License: ISC · Github: @ahmadnassri · Twitter: @ahmadnassri