Gathering detailed insights and metrics for rimraf
Gathering detailed insights and metrics for rimraf
Gathering detailed insights and metrics for rimraf
Gathering detailed insights and metrics for rimraf
@types/rimraf
Stub TypeScript definitions entry for rimraf, which provides its own types definitions
@lerna/rimraf-dir
Run rimraf on a directory in a subprocess to hack around slowness
del
Delete files and directories
@zkochan/rimraf
rm -rf for Node. Similar to rimraf but returns a promise
npm install rimraf
Typescript
Module System
Min. Node Version
Node Version
NPM Version
96.3
Supply Chain
99.2
Quality
75.9
Maintenance
100
Vulnerability
100
License
TypeScript (69.67%)
JavaScript (30.33%)
Total Downloads
21,239,068,414
Last Day
6,754,897
Last Week
115,281,699
Last Month
511,882,967
Last Year
4,972,434,609
ISC License
5,790 Stars
317 Commits
256 Forks
41 Watchers
14 Branches
30 Contributors
Updated on Aug 01, 2025
Latest Version
6.0.1
Package Id
rimraf@6.0.1
Unpacked Size
274.62 kB
Size
39.84 kB
File Count
137
NPM Version
10.7.0
Node Version
20.13.1
Published on
Jul 10, 2024
Cumulative downloads
Total Downloads
Last Day
-14.5%
6,754,897
Compared to previous day
Last Week
4.3%
115,281,699
Compared to previous week
Last Month
6.8%
511,882,967
Compared to previous month
Last Year
13.6%
4,972,434,609
Compared to previous year
2
The UNIX command rm -rf
for node
in a cross-platform implementation.
Install with npm install rimraf
.
20
or >=22
--version
to CLIimport { rimrafSync } from 'rimraf'
.Promise
instead of taking a callback.--glob
CLI option or glob
option property
to be set. (Removed in 4.0 and 4.1, opt-in support added in 4.2.)EBUSY
fails to
resolve the situation.Hybrid module, load either with import
or require()
.
1// 'rimraf' export is the one you probably want, but other 2// strategies exported as well. 3import { rimraf, rimrafSync, native, nativeSync } from 'rimraf' 4// or 5const { rimraf, rimrafSync, native, nativeSync } = require('rimraf')
All removal functions return a boolean indicating that all entries were successfully removed.
The only case in which this will not return true
is if
something was omitted from the removal via a filter
option.
rimraf(f, [opts]) -> Promise
This first parameter is a path or array of paths. The second argument is an options object.
Options:
preserveRoot
: If set to boolean false
, then allow the
recursive removal of the root directory. Otherwise, this is
not allowed.
tmp
: Windows only. Temp folder to place files and
folders for the "move then remove" fallback. Must be on the
same physical device as the path being deleted. Defaults to
os.tmpdir()
when that is on the same drive letter as the path
being deleted, or ${drive}:\temp
if present, or ${drive}:\
if not.
maxRetries
: Windows and Native only. Maximum number of
retry attempts in case of EBUSY
, EMFILE
, and ENFILE
errors. Default 10
for Windows implementation, 0
for Native
implementation.
backoff
: Windows only. Rate of exponential backoff for async
removal in case of EBUSY
, EMFILE
, and ENFILE
errors.
Should be a number greater than 1. Default 1.2
maxBackoff
: Windows only. Maximum total backoff time in ms to
attempt asynchronous retries in case of EBUSY
, EMFILE
, and
ENFILE
errors. Default 200
. With the default 1.2
backoff
rate, this results in 14 retries, with the final retry being
delayed 33ms.
retryDelay
: Native only. Time to wait between retries, using
linear backoff. Default 100
.
signal
Pass in an AbortSignal to cancel the directory
removal. This is useful when removing large folder structures,
if you'd like to limit the time spent.
Using a signal
option prevents the use of Node's built-in
fs.rm
because that implementation does not support abort
signals.
glob
Boolean flag to treat path as glob pattern, or an object
specifying glob
options.
filter
Method that returns a boolean indicating whether that
path should be deleted. With async rimraf
methods, this may
return a Promise that resolves to a boolean. (Since Promises
are truthy, returning a Promise from a sync filter is the same
as just not filtering anything.)
The first argument to the filter is the path string. The
second argument is either a Dirent
or Stats
object for that
path. (The first path explored will be a Stats
, the rest
will be Dirent
.)
If a filter method is provided, it will only remove entries if the filter returns (or resolves to) a truthy value. Omitting a directory will still allow its children to be removed, unless they are also filtered out, but any parents of a filtered entry will not be removed, since the directory will not be empty in that case.
Using a filter method prevents the use of Node's built-in
fs.rm
because that implementation does not support filtering.
Any other options are provided to the native Node.js fs.rm
implementation
when that is used.
This will attempt to choose the best implementation, based on the Node.js
version and process.platform
. To force a specific implementation, use
one of the other functions provided.
rimraf.sync(f, [opts])
rimraf.rimrafSync(f, [opts])
Synchronous form of rimraf()
Note that, unlike many file system operations, the synchronous form will typically be significantly slower than the async form, because recursive deletion is extremely parallelizable.
rimraf.native(f, [opts])
Uses the built-in fs.rm
implementation that Node.js provides. This is
used by default on Node.js versions greater than or equal to 14.14.0
.
rimraf.native.sync(f, [opts])
rimraf.nativeSync(f, [opts])
Synchronous form of rimraf.native
rimraf.manual(f, [opts])
Use the JavaScript implementation appropriate for your operating system.
rimraf.manual.sync(f, [opts])
rimraf.manualSync(f, opts)
Synchronous form of rimraf.manual()
rimraf.windows(f, [opts])
JavaScript implementation of file removal appropriate for Windows
platforms. Works around unlink
and rmdir
not being atomic
operations, and EPERM
when deleting files with certain
permission modes.
First deletes all non-directory files within the tree, and then
removes all directories, which should ideally be empty by that
time. When an ENOTEMPTY
is raised in the second pass, falls
back to the rimraf.moveRemove
strategy as needed.
rimraf.windows.sync(path, [opts])
rimraf.windowsSync(path, [opts])
Synchronous form of rimraf.windows()
rimraf.moveRemove(path, [opts])
Moves all files and folders to the parent directory of path
with a temporary filename prior to attempting to remove them.
Note that, in cases where the operation fails, this may leave
files lying around in the parent directory with names like
.file-basename.txt.0.123412341
. Until the Windows kernel
provides a way to perform atomic unlink
and rmdir
operations,
this is, unfortunately, unavoidable.
To move files to a different temporary directory other than the
parent, provide opts.tmp
. Note that this must be on the same
physical device as the folder being deleted, or else the
operation will fail.
This is the slowest strategy, but most reliable on Windows
platforms. Used as a last-ditch fallback by rimraf.windows()
.
rimraf.moveRemove.sync(path, [opts])
rimraf.moveRemoveSync(path, [opts])
Synchronous form of rimraf.moveRemove()
rimraf version 6.0.1
Usage: rimraf <path> [<path> ...]
Deletes all files and folders at "path", recursively.
Options:
-- Treat all subsequent arguments as paths
-h --help Display this usage info
--version Display version
--preserve-root Do not remove '/' recursively (default)
--no-preserve-root Do not treat '/' specially
-G --no-glob Treat arguments as literal paths, not globs (default)
-g --glob Treat arguments as glob patterns
-v --verbose Be verbose when deleting files, showing them as
they are removed. Not compatible with --impl=native
-V --no-verbose Be silent when deleting files, showing nothing as
they are removed (default)
-i --interactive Ask for confirmation before deleting anything
Not compatible with --impl=native
-I --no-interactive Do not ask for confirmation before deleting
--impl=<type> Specify the implementation to use:
rimraf: choose the best option (default)
native: the built-in implementation in Node.js
manual: the platform-specific JS implementation
posix: the Posix JS implementation
windows: the Windows JS implementation (falls back to
move-remove on ENOTEMPTY)
move-remove: a slow reliable Windows fallback
Implementation-specific options:
--tmp=<path> Temp file folder for 'move-remove' implementation
--max-retries=<n> maxRetries for 'native' and 'windows' implementations
--retry-delay=<n> retryDelay for 'native' implementation, default 100
--backoff=<n> Exponential backoff factor for retries (default: 1.2)
If you need to create a directory recursively, check out mkdirp.
No vulnerabilities found.