mkdirp
Recursively mkdir, like `mkdir -p`, but in node.js (by substack)
rimraf
A `rm -rf` util for nodejs (by isaacs)
mkdirp | rimraf | |
---|---|---|
3 | 17 | |
2,283 | 5,675 | |
- | - | |
0.0 | 7.2 | |
over 2 years ago | 4 months ago | |
JavaScript | TypeScript | |
GNU General Public License v3.0 or later | ISC License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
mkdirp
Posts with mentions or reviews of mkdirp.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-06-25.
-
How to handle Image file uploads with multer in nodejs
1.Install the following packages multer for file upload and mkdirp for creating multilevel directories.
-
A few years ago, I would’ve told you to install cd, top, and pwd. But not anymore, my friend. The new era of Rust-based command line applications has arrived, and you don’t want to be left behind.
mkdirp - npm, 64 million weekly downloads
-
Help with path module.
Paths between different operating systems is a PITA. You should use a package for that, the npm cli uses this https://www.npmjs.com/package/mkdirp
rimraf
Posts with mentions or reviews of rimraf.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-06-28.
-
Let’s Get Hands-On with WordPress FSE Theme and Custom Blocks — Part 2
First, I clean up the project from the old build using rimraf. Then, I compile all my files using Parcel along with its parcel/transformer-sass, plugin, and I process CSS using autoprefixer.
-
The Bun Shell
And npmjs.com will block your IP if you do too many downloads in on day.
Actually is says 86m a week here: https://www.npmjs.com/package/rimraf
-
PURISTA: Build with rimraf, esbuild, Turbo & git-cliff
Huge thanks to Isaacs! Rimraf comes to the rescue, providing a reliable solution for deep, recursive removal of folders and files. At PURISTA, we rely on rimraf to maintain pristine build output directories.
-
Understanding package.json II: Scripts
Avoid platform-specific commands: Avoid using platform-specific commands in your scripts. Use cross-platform tools like Node.js or Bash to ensure that your scripts work on different platforms. For instance, if you want your npm script to remove a certain directory using the rm -rf command, this would work perfectly on a Linux or Mac machine but would error out on Windows. To avoid this, you can use a cross-platform package such as [rimraf](https://www.npmjs.com/package/rimraf).
-
Extended "run all specs" feature for Cypress 10
rimraf
-
The minimal setup to package and reuse your React components
Babel will overwrite but not delete any existing files or directories in the output directory. To be sure the lib folder doesn’t contain old files you can delete it before transpiling. To do this automatically you can install rimraf and add it to the transpile script like this:
-
4 reasons to avoid using `npm link`
Many packages on npm are designed to make changes to the file-system, such as rimraf or a code linter. In an accident, the consequences of running file-system altering code can be detrimental.
-
Help Deleting STONKING File Path (over 3000 char +) WS2016 File Server
Also, rimraf seems to be popular.
-
I Prefer Makefiles over Package.json Scripts
No, that's why there's a bunch of packages such as rimraf[0] that implements that sort of functionality in a cross-platform way that most people use in their scripts
[0]: https://www.npmjs.com/package/rimraf
-
TIFU by accidentally creating over 15 million files on my computer
Something that might work: rimraf. A small node script can churn through file deletion surprisingly fast on Windows. Used to use it to clear out npm packages directories at a greater than glacial pace.
What are some alternatives?
When comparing mkdirp and rimraf you can also consider the following projects:
fs-extra - Node.js: extra methods for the fs object like copy(), remove(), mkdirs()
del - Delete files and directories
make-dir - Make a directory and its parents if needed - Think `mkdir -p`
graceful-fs - fs with incremental backoff on EMFILE
proper-lockfile - An inter-process and inter-machine lockfile utility that works on a local or network file system.
move-file - Move a file - Even works across devices
chokidar - Minimal and efficient cross-platform file watching library
write-json-file - Stringify and write JSON to a file atomically
cross-env
Watch-fn