I get an high vulnerbility error when im running npm i uuid

Viewed 21

look in the terminal where the error message appears

CLICK HERE

1 Answers

This is a result of the new npm version including the audit command.

npm introduced new functionality in to warn users about vulnerabilities in the packages they're installing - so there's no "new" vulnerability in npm package you are installing, it's just that now npm is now warning you about vulnerabilities that already existed:

Source: reviewing-and-acting-on-the-security-audit-report

Related