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 🙏

© 2026 – Pkg Stats / Ryan Hefner

fs-remove-compat

v1.0.2

Published

Cross-platform file removal utilities with Node.js 0.8+ compatibility. Provides rm and rmSync ponyfills matching Node.js fs.rm API, plus safeRm/safeRmSync with Windows-friendly retry defaults.

Downloads

30,311

Readme

fs-remove-compat

Cross-platform file removal utilities with Node.js 0.8+ compatibility.

Features

  • Strict ponyfills: rm and rmSync exactly match Node.js fs.rm/fs.rmSync API
  • Enhanced variants: safeRm and safeRmSync with Windows-friendly defaults
  • Node 0.8+ support: Works on all Node.js versions
  • Zero dependencies: Pure Node.js implementation
  • Migration codemod: Auto-migrate from rimraf2

Installation

npm install fs-remove-compat

Usage

Strict Ponyfills (match Node.js fs.rm)

import { rm, rmSync } from 'fs-remove-compat';

// Remove a file
rmSync('/path/to/file.txt');

// Remove directory recursively
rmSync('/path/to/dir', { recursive: true });

// Ignore if doesn't exist
rmSync('/path/to/maybe', { force: true });

// Async with callback
rm('/path/to/file.txt', (err) => {
  if (err) console.error(err);
});

// Async with Promise
await rm('/path/to/file.txt');
await rm('/path/to/dir', { recursive: true, force: true });

Enhanced Variants (Windows-friendly)

import { safeRm, safeRmSync } from 'fs-remove-compat';

// safeRm/safeRmSync have Windows-friendly defaults:
// - maxRetries: 10 on Windows, 0 on POSIX
// - Exponential backoff (1.2 factor)
// - EPERM chmod fix for locked files

// Use for CI/test cleanup where Windows file locking is common
safeRmSync('/path/to/dir', { recursive: true, force: true });
await safeRm('/path/to/dir', { recursive: true, force: true });

API

Options

interface RmOptions {
  recursive?: boolean;   // Remove directories recursively. Default: false
  force?: boolean;       // Ignore ENOENT errors. Default: false
  maxRetries?: number;   // Retries on EBUSY/EPERM/etc. Default: 0 (or 10 for safe*)
  retryDelay?: number;   // Delay between retries in ms. Default: 100
}

rm(path, [options], [callback])

Removes a file or directory. Matches Node.js fs.rm signature.

rmSync(path, [options])

Synchronous version. Matches Node.js fs.rmSync signature.

safeRm(path, [options], [callback])

Enhanced version with Windows-friendly defaults.

safeRmSync(path, [options])

Synchronous enhanced version.

Migration from rimraf2

The package includes a smart migration codemod:

npx fs-remove-compat migrate <directory>

Smart Detection

The codemod automatically chooses the right function based on file location:

Source files (src/) - Uses strict ponyfill:

  • rm / rmSync - exactly matches Node.js behavior
  • Apps should know immediately if removal fails

Test files (test/) - Uses enhanced variant:

  • safeRm / safeRmSync - Windows-friendly retry defaults
  • Retry is acceptable for test cleanup

Transformations

| Context | Before | After | |---------|--------|-------| | Source | rimraf2(p, {disableGlob:true}, cb) | rm(p, cb) | | Source | rimraf2.sync(p, {disableGlob:true}) | rmSync(p) | | Test | rimraf2(p, {disableGlob:true}, cb) | safeRm(p, cb) | | Test | rimraf2.sync(p, {disableGlob:true}) | safeRmSync(p) |

Why use this?

  1. Replace rimraf2 without the { disableGlob: true } boilerplate
  2. Cross-platform with automatic Windows retry logic
  3. Future-proof - uses native fs.rm when available (Node 14.14+)
  4. Backwards compatible - works on Node 0.8+

License

MIT