0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[PHP] エラー解決 npm 脆弱性の解決

Last updated at Posted at 2020-12-01

前回のエラーを解決する際に脆弱性が2つあるよというエラーに初遭遇。
前回の記事のURLは[こちら]になります。
[こちら]:https://qiita.com/yutarou/items/5cca5b252d67c80a9bc0

(省略)
found 2 vulnerabilities (1 low, 1 high)
run `npm audit fix` to fix them, or `npm audit` for details
(省略)

上記のエラーを突破しましたのでその備忘録として投稿します。

#解説
まず何が脆弱性なのかを確認するためターミナルでnpm auditを実行する

//ターミナルにて
npm audit  

すると下記のようなリストがターミナルで出現します。
“スクリーンショット” 2020-12-01 13.45.10.jpg

今回はSEMVER WARNING: Recommended action is a potentially breaking change
というエラーが2つ出てきました。ここでターミナルでnpm audit fix を実行しましょう。

//ターミナルにて
npm audit fix 

しかし、下記の画像のようにまだエラーを修復できませんでした。
“スクリーンショット” 2020-12-01 13.56.07.jpg
これでも突破できる方法がnpm audit fix --forceというものがあります。
--forceはオプションになり強制的に修復させるというやり方です。

//ターミナルにて
npm audit fix --force 

これを実行したら無事に下記の画像のように脆弱性がなくなりました。
“スクリーンショット” 2020-12-01 14.03.05.jpg

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?