外观
create-react-app
场景:运行命令npx create-react-app my-app创建react应用时出现该错误
npx create-react-app my-app
解决方法:根据命令行提示删除全局包npm uninstall -g create-react-app无效,网上查找内容,找到了解决思路,即重新安装该包,然后再运行命令创建react应用
npm uninstall -g create-react-app