Home > front end >  I have npm vulnerability issue
I have npm vulnerability issue

Time:11-09

I was doing React App, I need to install react-router-dom, so I typed npm install react-router-dom and I faced this problem. Even I recreated the React Project and reinstalled node.js, the result didn't change.

What I can do to fix the problem?

enter image description here

CodePudding user response:

This means packages installed by npm install or as submodules of other packages have know security issues. Running npm audit fix will try to automatically resolve some of these vulnerabilities but is not guaranteed to. Reading the whole message might help next time.

CodePudding user response:

Don't worry about this error. Even if you make a app with create-react-app which is recomended by react you still get this error. Just try out your code it will work just fine

  • Related