Home > Software design >  Not able to install react-router-dom
Not able to install react-router-dom

Time:11-23

enter image description hereCan anyone please tell me why react- router- dom is not installing in my vs-code and how to fix it.

It showing 6 high vulnerability, I also run npm audit fix --force and npm audit but nothing happened. Please tell me how to remove these vulnerability

CodePudding user response:

Just tried it, react-router-dom installs and also works on your part as I can see.

Try to fix the vulnerabilities by doing these steps:

npm outdated // run to check outdated npm packages

npx npm-check-updates -u // run to check updates outdated npm packages

npm install // run to update npm packages

Source: https://stackoverflow.com/a/70920497/12772716

  • Related