All Guides

Is ~/.npm Safe to Delete?

Node / JavaScriptTypical size: 2-10GB
Yes, Safe to Delete

Yes, the npm cache is safe to delete. Packages are re-downloaded when needed.

Side effects: Future npm installs will re-download packages instead of using cached versions.

What is ~/.npm?

The .npm directory caches downloaded packages. Deleting it is safe - npm will simply re-download packages as needed. This can reclaim significant space, especially on development machines.

Is it safe to delete?

Yes~/.npm is generally safe to delete. The data in this folder is temporary and will be recreated by the application when needed.

Before deleting, make sure:

  • You don't have any important unsaved work in the related application
  • You're not in the middle of a critical task that might need this cached data
  • You understand that initial load times may be slower after deletion

What happens after deletion?

Future npm installs will re-download packages instead of using cached versions. The folder will be recreated automatically by the application when needed. This process is typically seamless but may take some time depending on the amount of data that needs to be regenerated.

How to delete it

Recommended

Use MacMop

MacMop finds this folder automatically and lets you delete it safely with one click.

Terminal

rm -rf ~/.npm

Warning: This command permanently deletes the folder. Double-check the path before running.

Finder

  1. Open Finder
  2. Press ⌘ + Shift + G (Go to Folder)
  3. Paste: ~/.npm
  4. Move the folder to Trash

MacMop scans all your hidden caches and tells you exactly what's safe to delete.