Does anyone knows what "rimraf" means?

node.jsSemantics

node.js Problem Overview


Ok for the recursive options when deleting files, but what is rimraf? Is it an acronym? Does it come from words combination?

The word is fairly pleasant, I would like to know where does it come from.

node.js Solutions


Solution 1 - node.js

Rimraf

The UNIX command rm -rf for Node.js

Deep deletion (like rm -rf) module for Node.js that provides asynchronous deep- deletion of files and directories.

The rimraf executable is a faster alternative to the rm -rf shell command.

(rm stands for remove, rf stands for recursive force.)

Source :

Solution 2 - node.js

It is a way to pronounce the command rm -rf (remove, recursive, force removal).

Solution 3 - node.js

rimraf is an executable that is used to clean the installed node packages in a node based project. It basically executes the rm -rf command on the node_modules directory, but is a faster alternative.

Solution 4 - node.js

> isaacs: It's how I pronounce rm -rf

from https://github.com/isaacs/rimraf/issues/175

Solution 5 - node.js

Like others have said, it's based on rm -rf. However, I think pronunciation sounds like it may come from the term riffraff, or perhaps even the rapper Riff Raff (just kidding).

And I say this as a possible explanation for the added "i" and "a" in "rimraf" since that coincides with the word riffraff.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJoseph MerdrignacView Question on Stackoverflow
Solution 1 - node.jsArun RavindranathView Answer on Stackoverflow
Solution 2 - node.jsSebastian RedlView Answer on Stackoverflow
Solution 3 - node.jsajayView Answer on Stackoverflow
Solution 4 - node.jsatian25View Answer on Stackoverflow
Solution 5 - node.jsnotnoahkirbyView Answer on Stackoverflow