mkdirp2

Recursively mkdir, like `mkdir -p`

MIT 6 个版本
安装
npm install mkdirp2
yarn add mkdirp2
pnpm add mkdirp2
bun add mkdirp2
README

view on npm npm module downloads Build Status Dependency Status js-standard-style

DEPRECATED: Use Node.js fs.mkdir

mkdirp2

A maintained fork of the stagnant mkdirp.

Differences

  1. Command-line executable and its dependencies removed, this fork is for Nodejs use only.

  2. Extended with a promise method:

    mkdirp.promise('tmp/tmp2/file')
      .then(() => console.log('Created'))
      .catch(err => console.error(`Failed: ${err.message}`))
    
版本列表
1.0.5 2021-07-04
1.0.4 2018-05-21
1.0.3 2017-05-12
1.0.2 2017-05-06
1.0.1 2017-05-06
1.0.0 2017-05-06