Socket
Socket
Sign inDemoInstall

mkdirp-classic

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mkdirp-classic

Mirror of mkdirp 0.5.2


Version published
Weekly downloads
12M
increased by0.19%
Maintainers
1
Install size
5.22 kB
Created
Weekly downloads
 

Package description

What is mkdirp-classic?

The mkdirp-classic npm package is a utility that allows you to create directories and subdirectories in a file system, similar to the `mkdir -p` command in Unix/Linux. It ensures that all directories in a specified path are created if they do not already exist, making it easier to set up a nested directory structure with a single command.

What are mkdirp-classic's main functionalities?

Create directories recursively

This feature allows you to create a nested directory structure. If any part of the specified path does not exist, mkdirp-classic will create those directories for you. The example code demonstrates how to create a series of nested directories.

const mkdirp = require('mkdirp-classic');

mkdirp('/tmp/some/long/path', function (err) {
  if (err) console.error(err)
  else console.log('Directory created!')
});

Other packages similar to mkdirp-classic

Readme

Source

mkdirp-classic

Just a non-deprecated mirror of mkdirp 0.5.2 for use in modules where we depend on the non promise interface.

npm install mkdirp-classic

Usage

// See the above link

License

MIT

FAQs

Last updated on 04 May 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc