Skip to content

Instantly share code, notes, and snippets.

@brrd
Created January 22, 2022 10:12
Show Gist options
  • Save brrd/7065dece8fd938f1e084c5494b6a071d to your computer and use it in GitHub Desktop.
Save brrd/7065dece8fd938f1e084c5494b6a071d to your computer and use it in GitHub Desktop.
Node 14 recursive rm
import fs from 'fs/promises';
async function main() {
await fs.rm(myDir, { recursive: true, force: true });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment