Skip to content

Instantly share code, notes, and snippets.

@khasky
Last active July 10, 2026 23:32
Show Gist options
  • Select an option

  • Save khasky/45730b9e76f5c037a5275260bca50afa to your computer and use it in GitHub Desktop.

Select an option

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.
:: 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