Socket
Socket
Sign inDemoInstall

mkdirp-promise

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mkdirp-promise

Promise version of mkdirp


Version published
Weekly downloads
361K
decreased by-0.85%
Maintainers
1
Weekly downloads
 
Created
Source

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 --production --save mkdirp-promise

Usage

I reccomend using an optimized build matching your Node.js environment version, otherwise, the standard require would work just fine.

/*
 * Node 6
 * Built using `babel-preset-es2015-node6`
 */
const mkdirp-promise = require('mkdirp-promise/lib/node6')

/*
 * Node 5
 * Built using `babel-preset-es2015-node5`
 */
const mkdirp-promise = require('mkdirp-promise/lib/node5')

/*
 * Node 4
 * Built using `babel-preset-es2015-node4`
 */
const mkdirp-promise = require('mkdirp-promise/lib/node4')

/*
 * Node >=0.10 <=0.12
 * Built using `babel-preset-es2015`
 * Note: 
 *   - additional package is required: `babel-runtime`
 *   - npm install --production --save babel-runtime
 */
var mkdirp-promise = require('mkdirp-promise')

API

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: www.ahmadnassri.com  ·  License: ISC  ·  Github: @ahmadnassri  ·  Twitter: @ahmadnassri

Keywords

FAQs

Package last updated on 19 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc