私は、angular .netコアWeb APIを備えたアプリに取り組んでいます。
このリポジトリのクローンを作成したときに、angularアプリケーションでnpm installを実行しようとしましたが、奇妙なエラーが発生しました。
npm install
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","Arch":"any"} (current: {"os":"win32","Arch":"x64"})
audited 34090 packages in 14.711s
found 15 vulnerabilities (9 low, 6 high)
run `npm audit fix` to fix them, or `npm audit` for details
また、npm audit fixを実行しようとすると、さらに多くのエラーが発生します。
npm audit fix
npm ERR! code ELOCKVERIFY
npm ERR! Errors were found in your package-lock.json, run npm install to fix them.
npm ERR! Invalid: lock file's @progress/kendo-theme-default@file:https:/registry.npmjs.org/@progress/kendo-theme-default/-/kendo-theme-default-2.48.1.tgz does not satisfy @progress/kendo-theme-default@file:lib/kendo-theme-default
npm ERR! Invalid: lock file's bootstrap@file:https:/registry.npmjs.org/bootstrap/-/bootstrap-4.0.0.tgz does not satisfy bootstrap@file:lib/bootstrap
どうすれば解決できますか?
多くの場合、これはpackage-lock.jsonの混乱に関連しています。私はしようとすることをお勧めします:
1-package-lock.jsonを削除します
2-node_modulesフォルダーを削除する
3-npm installを再試行します
これは、my angularアプリに新しいパッケージを追加する際のいくつかの問題を修正するために使用されていました。
がんばろう!
私はコマンドを使用しました:
npm audit fix --force
そして、私が実行した後:
$ npm install
npm WARN assets No description
audited 7779 packages in 3.914s
found 0 vulnerabilities