Skip to content

Instantly share code, notes, and snippets.

View utsavchab's full-sized avatar

Utsav Chabhadiya utsavchab

View GitHub Profile
@utsavchab
utsavchab / delete_node_modules.js
Created May 15, 2025 16:35
Delete all node_modules
const fs = require('fs')
const path = require('path')
// Configuration
const startDir = process.argv[2] || '/' // Use command line argument or default to root
let deletedCount = 0
let scannedCount = 0
console.log(`Starting to scan from ${startDir}`)