How to clear cache in Npm?
First try running the following command to verify the npm cache.
npm cache verify
It shows the size and path of the npm cache.
C:\Users\Jay>npm cache verify
Cache verified and compressed (~\AppData\Roaming\npm-cache\_cacache):
Content verified: 7736 (873243019 bytes)
Content garbage-collected: 5209 (1044405556 bytes)
Index entries: 13079
Finished in 26.299s
Now to delete the npm cache you can run the following,
npm cache clean --force