Reputation: 357
145 packages are looking for funding
run npm fund
for details
found 6 vulnerabilities (4 moderate, 2 high)
run npm audit fix
to fix them, or npm audit
for details
Upvotes: 1
Views: 6699
Reputation: 1121
Delete node_modules and package-lock.json after taht:
npm audit fix
npm install
Upvotes: 1
Reputation: 6758
This isn't an error, this message is normal.
145 packages are looking for funding run npm fund for details
This line is a donation call (not mandatory)
found 6 vulnerabilities (4 moderate, 2 high) run npm audit fix to fix them, or npm audit for details
This line informs you that some of your package.json modules have vulnerabilities. Run npm audit
to view a list of them and the associated vulnerabilities.
If you run the mentioned command npm audit fix
, it will try to automatically fix it for you by updating your package.json with new versions for these modules.
Upvotes: 1
Reputation: 192
Delete folder 'node_modules' and run in console:
npm install // or yarn install
Upvotes: 2