๐งน Mac Storage Hog Audit โ README
This document lists potential storage occupiers on macOS. These are common folders, files, caches, and apps that may consume a significant amount of disk space over time.
๐งโ๐ป For Developers
๐ฆ Node.js / JavaScript
-
/node_modules/
(inside projects) -
~/.npm/
(NPM cache) -
~/.yarn/
(Yarn cache) -
~/.pnpm-store/
(PNPM cache) -
~/.nvm/versions/
(Node versions if using NVM) - Global NPM modules:
npm list -g
๐ Python
-
~/.virtualenvs/
(virtual environments - if usingvirtualenv
orpipenv
) -
~/anaconda3/
(if using Anaconda) ~/miniconda3/
-
__pycache__/
folders in Python projects - Jupyter cache and notebooks
๐ณ Docker
- Docker images, containers, and volumes
~/Library/Containers/com.docker.docker/
- Docker Desktop's internal disk
๐งช Xcode & Dev Tools
~/Library/Developer/Xcode/DerivedData/
~/Library/Developer/CoreSimulator/Devices/
~/Library/Developer/XCPGDevices/
~/Library/Caches/com.apple.dt.Xcode/
- iOS Device backups
โ๏ธ Homebrew
/usr/local/Cellar/
-
/opt/homebrew/Cellar/
(Apple Silicon) /Library/Caches/Homebrew/
๐ General Caches & Temp Files
๐ Web Browsers
-
Chrome:
~/Library/Application Support/Google/Chrome/
-
Safari:
~/Library/Safari/
and~/Library/Caches/com.apple.Safari/
-
Firefox:
~/Library/Application Support/Firefox/
- Web Worker storage (e.g. YouTube):
~/Library/Caches/com.google.Chrome/Default/Service Worker/
๐ฌ Messaging & Collaboration Tools
- Slack:
~/Library/Application Support/Slack/
- Discord:
~/Library/Application Support/discord/
- Microsoft Teams, Zoom, etc.
๐ Mail
~/Library/Mail/
~/Library/Containers/com.apple.mail/
- Mail attachments and old messages
๐ฉ Downloads Folder
-
~/Downloads/
โ common for videos, installers, and large files
๐ฆ System, Apps & Misc
๐ Trash
~/.Trash/
๐ Large Files
- Use
Finder
โCmd + F
โ Filter byFile Size
andKind
๐ "Other" Storage in Disk Usage
- App extensions
- Application support data
- Fonts, logs, old updates
๐งพ Log Files
~/Library/Logs/
/Library/Logs/
๐ฟ Time Machine Local Snapshots
/Volumes/com.apple.TimeMachine.localsnapshots/
๐ก Spotlight Index
-
/var/folders/
โ includes caches, index databases, etc.
๐ฌ Media & Creative Software
๐ต iTunes / Music
~/Music/iTunes/iTunes Media/
๐ฅ iMovie / Final Cut Pro
- Render files, libraries, and caches
๐ธ Photos
~/Pictures/Photos Library.photoslibrary/
๐งฐ System Tools & Others
๐งฎ Virtualization
- Parallels, VMWare, VirtualBox images (huge disk files)
โจ๏ธ Emulators & IDEs
- Android Studio:
~/Library/Android/sdk/
- VSCode extensions:
~/.vscode/
- IntelliJ, PyCharm caches
๐งฑ Design Tools
- Figma, Sketch, Adobe caches and projects
๐ Common Folders to Inspect
Folder | Description |
---|---|
~/Library/Caches/ |
General app cache |
/Library/Caches/ |
System-wide cache (admin required) |
~/Library/Application Support/ |
App data (often large) |
~/Library/Preferences/ |
User settings (small) |
~/Library/Logs/ |
App/system logs |
~/.Trash/ |
Deleted files not yet purged |
~/Movies/ , ~/Pictures/
|
Common for large personal media |
This list gives you a holistic view of what might be bloating your Mac. Itโs great for building a cleanup script, audit tool, or even a GUI app for end users and developers alike.
Top comments (0)