I am trying to install the react app using the code:
sudo npm i -g create-react-app@1.5.2
I keep receiving the following response:
npm WARN deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap. changed 66 packages, and audited 67 packages in 838ms
1 package is looking for funding
run npm fund
for details
2 high severity vulnerabilities
Some issues need review, and may require choosing a different dependency.
I then proceed to execute: npm install tar@6 -g
to install the latest version of tar available and then execute: npm show tar version
and it says I am running version 6.1.11 which is currently the latest version. However I keep receiving the same error saying that my tar is outdated.
Any ideas as to how I can resolve this challenge?