I recently followed a tutorial by Kevin Powell on SASS and Parcel through YouTube. I was able to successfully set up the SASS part and get the Parcel bundler working smoothly on one project, so everything seemed to be going well at that point.
However, today when I tried to create a new project and installed Parcel using
npm install parcel-bundler --save-dev
, I encountered 2 high severity vulnerabilities. Despite running both npm audit fix
and npm audit fix --force
as recommended, I couldn't seem to resolve the issue.
The npm audit
output is as follows:
npm audit report
node-forge <=0.9.2
Severity: high
Prototype Pollution in node-forge - https://npmjs.com/advisories/1561
fix available via `npm audit fix --force`
Will install <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="047465766761682966716a6068617644352a">[email protected]</a>, which is a breaking change
node_modules/node-forge
parcel-bundler >=1.4.0
Depends on vulnerable versions of node-forge
node_modules/parcel-bundler
2 high severity vulnerabilities
To address all issues (including breaking changes), run:
npm audit fix --force
Despite trying various solutions found online, I still couldn't fix the problem.
Even after conducting tests on both my PC and laptop—my main PC running Linux Mint 19.2 Cinnamon and the laptop operating on Windows 10—I consistently encountered the same 2 vulnerability issues. Is there any way to remedy this situation?