🐟

[npm] cache cleenをしたい

2022/07/03に公開

やりたいこと

下記を実行したい。

npm cache clean

エラー内容

npm cache clean
npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
npm ERR! As of npm@5, the npm cache self-heals from corruption issues
npm ERR!   by treating integrity mismatches as cache misses.  As a result,
npm ERR!   data extracted from the cache is guaranteed to be valid.  If you
npm ERR!   want to make sure everything is consistent, use `npm cache verify`
npm ERR!   instead.  Deleting the cache can only make npm go slower, and is
npm ERR!   not likely to correct any problems you may be encountering!
npm ERR!
npm ERR!   On the other hand, if you're debugging an issue with the installer,
npm ERR!   or race conditions that depend on the timing of writing to an empty
npm ERR!   cache, you can use `npm install --cache /tmp/empty-cache` to use a
npm ERR!   temporary cache instead of nuking the actual one.
npm ERR!
npm ERR!   If you're sure you want to delete the entire cache, rerun this command
npm ERR!   with --force.

npm ERR! A complete log of this run can be found in:

原因

npm@5からはnpm cache cleenを使えないみたい。

解決策

npm cache verify

参考

https://2001y.me/blog/web/npm5-cache-clean/

Discussion