【使用npm install创建项目时报错】

使用npm install创建项目时报错npm WARN deprecated [email protected]: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap.

当Node >= 14.0.0 和npm >= 5.6。创建项目时应使用npx包进行创建。

npx create-react-app myreact-app 
cd myreact-app 
npm start

你可能感兴趣的:(React,react)