10

npm ERR! As of npm@5, the npm cache self-heals from corruption issues and data extracted from the cache is guaranteed to be valid. If you want to make sure everything is consistent, use 'npm cache verify' instead. npm ERR! npm ERR! If you're sure you want to delete the entire cache, rerun this command with --force.

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\janak\AppData\Roaming\npm-cache_logs\2017-08-11T04_38_31_995Z-debug.log

Community
  • 1
  • 1
Chanaka Amarasinghe
  • 3,489
  • 11
  • 26
  • 38

3 Answers3

23

Run the command with --force:

npm cache clean --force

Based on npm documentation:

it should never be necessary to clear the cache for any reason other than reclaiming disk space, thus why clean now requires --force to run.

A-Sharabiani
  • 17,750
  • 17
  • 113
  • 128
8

Try deleting your node_modules folder inside your project, and then run npm install again.

Stephen R. Smith
  • 3,310
  • 1
  • 25
  • 41
3

Run the same command and just add --force or -f with it.

npm cache clean --force or npm cache clean -f

This error shows because you are accessing project on client terminal. please open terminal in administration mode and hit npm cache clean command.

Deva
  • 1,851
  • 21
  • 22