Whenever I install any package with this command
npm install
then output comes with errors,Here You can See
(https://i.stack.imgur.com/1duiK.jpg)
Whenever I install any package with this command
npm install
then output comes with errors,Here You can See
(https://i.stack.imgur.com/1duiK.jpg)
You're not actually getting any errors from npm install
! It looks like npm is detecting that you've already installed all of the required packages, which is why it just says up to date
.
However, you see that it is also reporting about some security vulnerabilities or out-of-date dependencies that could be updated. This is normal. You don't have to do anything to get your app to work, but running npm audit fix
and then manually fixing the remaining dependency errors will result in a more secure dependency tree.