Make directories recursively -please - you promised!
npm install mkdirplz
OBS: This package uses async/await and requires Node.js 7.6
const mkdir = require('mkdirplz');
await mkdir('path/to/something');
// => path/to/something
await mkdir('path/to/myfile.js', { filepath: true });
// => path/to/
This package does not create the last part of the path, since it assumes that's a filepath.
Type: Promise
Creates path recursively.
Type: String
A string file path to create.
Type: Boolean
Default: false
Set to true
to skip making the last segment.
Useful if the input path is a filename.
MIT © Terkel Gjervig