Hi everyone ,
I got this error code when i am trying to install bootstrap on my project with this code npm install --saved bootstrap. Could you help with simple language :pray:
Asked
Active
Viewed 150 times
0
atbostan
- 41
- 4
-
The solution is to not use the faulty package in your app. – Ploppy Apr 02 '20 at 10:42
-
1These aren't faulty packages. They have security vulnerabilities. Maybe you used an old package version. – Adis Alj Apr 02 '20 at 10:49
1 Answers
0
Here's the npm documentation for your issue
You may use an old project or installed an old version of a npm package. That's why you are seeing this warning in the terminal.
With npm audit you see the vulnerabilities.
Just run npm audit fix to fix all issues. If that doesn't work please fix your packages manually.
Adis Alj
- 106
- 1
- 6