npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mkp

v1.0.1

Published

Recursively make files and/or directories with brace expansion support

Downloads

108

Readme

node-mkp

npm travis

mkp (mk path) is a node.js module that recursively creates paths, both directory and file with brace expansion support. It means, you can do stuff like mkdir -p /some/dir/{foo,bar}/baz, but in node.js!

Install

npm i mkp

Usage

mkp(input[, options], cb)

  • input {String | Array<String>} string or an array of strings of normal paths (file and dir) and/or braces patterns.

  • options {Object} optional (all options are false by default)

  • noext {Boolean}

    • the default behavior is if path doesn't have extname, it is created as a directory. If {noext: true} then paths without extname will be created as files and not dirs. It is basically used when you want to create file(s) without extname, like /some/filenoext.
  • plus all mkdirp and touch options.

  • return cb(err) with possible err or null.

Create files and/or dirs. input can be file, dir, things like /some/foo-{1..3}/file.js or an array of each or combination of all of them. It doesn't matter. Just put it there, you most likely get what you want. It couldn't be simpler than this. Please checkout examples down below.

mkp.sync(input[, options])

create files and dirs sync. input and options are the same as async version. It throws err if any found.

const mkp = require('mkp')

var dir = 'some/nested/dir'
try {
  mkp.sync(dir)
  console.log('done!')
} catch (er) {
  console.error(er)
}

Examples

In all examples, it is assumed

const mkp = require('mkp')

is declared before.

dirs (input is string)

var dir = 'some/nested/dir'
mkp(dir, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var dirs = 'some/nested/dir-{a,b,c}'
mkp(dirs, (er) => {
  if (er) console.error(er)
  else console.log('done!')
  // all 'some/nested/dir-a', 'some/nested/dir-b', 'some/nested/dir-c' created!
})
var dirs = 'some/nested/dir-{a..c}'
mkp(dirs, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var dirs = 'some/nested/{foo,bar}/dir-{a..e..2}'
mkp(dirs, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var dirs = 'some/nested/{foo,{1..3},bar}/dir'
mkp(dirs, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})

files (input is string)

var file = 'some/nested/file.js'
mkp(file, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var files = 'some/nested/file-{a,b,c}.js'
mkp(files, (er) => {
  if (er) console.error(er)
  else console.log('done!')
  // all 'some/nested/file-a.js', 'some/nested/file-b.js', 'some/nested/file-c.js' created!
})
var files = 'some/nested/file-{a..c}.js'
mkp(files, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var files = 'some/nested/{foo,bar}/file-{a..e..2}.js'
mkp(files, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var files = 'some/nested/{foo,{1..3},bar}/file.js'
mkp(files, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})

#####noext option (useful when you want to create files with no extname)

var file = 'some/nested/filenoext'
// without {noext: true}, it will be created as dir
mkp(file, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var file = 'some/nested/filenoext'
// now it will be created as file
mkp(file, {noext: true}, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})

input is array

var dirs = ['some/nested/dir-{a,b,c}', 'some/other/nested/dir']
mkp(dirs, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var files = ['some/nested/file-{a,b,c}.js', 'some/other/nested/file.md']
mkp(files, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})
var paths = [
  'some/nested/dir-{a,b,c}',
  'some/nested/file-{a,b,c}.js',
  'some/other/nested/dir',
  'some/other/nested/file.js'
]

mkp(paths, (er) => {
  if (er) console.error(er)
  else console.log('done!')
})

License

Licensed under MIT