Last active
July 10, 2026 23:32
-
-
Save khasky/45730b9e76f5c037a5275260bca50afa to your computer and use it in GitHub Desktop.
Safely clean common Windows development caches: pip, npm, Yarn, pnpm, Playwright, and inspect installed NVM versions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: 1) pip | |
| py -m pip cache info | |
| py -m pip cache purge | |
| :: 2) npm | |
| npm cache verify | |
| npm cache clean --force | |
| :: 3) yarn | |
| yarn cache clean | |
| :: 4) pnpm | |
| pnpm store prune | |
| :: 5) playwright | |
| npx playwright uninstall --all | |
| :: 6) nvm | |
| nvm list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment