Npm installation error
when i run npm install on laravel project on Metronic theme it show me this error
134 packages are looking for funding
run npm fund for details
14 moderate severity vulnerabilities
To address issues that do not require attention, run: npm audit fix
To address all issues possible (including breaking changes), run: npm audit fix --force
Some issues need review, and may require choosing a different dependency.
Run npm audit for details.
Replies (3)
Hi,
Could you please try to use "yarn" to install? At the moment, "npm install" have this kind of issue.
Install yarn if you don't have it.
npm install -g yarn
yarn Thanks
it doesn't work
it show me now this error
fix available via npm audit fix
node_modules/npm/node_modules/cli-table3/node_modules/ansi-regex
node_modules/npm/node_modules/string-width/node_modules/ansi-regex
Hi Sadeeq,
Could you please try to run this command?
npm audit fix --force After you run the npm audit fix, there are only warnings on moderate severity vulnerabilities left. No critical issue. To fully fix this, we have to remove the dependencies plugins from package.json, but the application with be unusable. For example, the quill plugin. You may remove it if you are not using it.
Not all functions in the plugin have issues. You can check the link and view the discussion. The plugin's author will release the fixes later and we can install the patch soon.
Thanks