I'm trying to create a webpage using Reactjs (for learning react js).
After I run the command npx create-react-app cars
, I'm getting errors as follows:
npm WARN deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap. added 64 packages, and audited 107 packages in 15s 3 high severity vulnerabilities To address all issues, run: npm audit fix Run "npm audit" for details.
After running npm audit
, it says:
To address all issues (including breaking changes), run: npm audit fix --force
which gave the result as:
found 0 vulnerabilities
After following all these steps, when I try to create a project starting from create-react-app
I'm getting same errors like:
x high severity vulnerabilities to address all issues, run: npm audit
I don't understand what I'm missing here. By all these I ended up creating 4 folders which has a subfolder node-modules
and two JSON files named package
and package-lock
Can anybody please direct me how do I proceed with all these?
- npm version: 7.21.0
- node version: v16.7.0
- windows: 10