是否在命令行上所有命令
从全局安装npm npm install -g create-react-app
到以下代码:
npx create-react-app <myprojectname>
并且清除了npm缓存,但是它始终卡在显示以下错误的图像中的行上。伴随错误:
┌──────────────────────────────────────────────────────────────────┐
│ npm update check failed │
│ Try running with sudo or get access │
│ to the local update config store via │
│ sudo chown -R $USER:$(id -gn $USER) C:\Users\Smart Sites\.config │
└──────────────────────────────────────────────────────────────────
连同65 packages are looking for funding
[1]:https://i.stack.imgur.com/KJVVp.png
答案 0 :(得分:0)
这是我从create react应用程序的入门页面中找到的内容。
如果您先前已通过以下方式全局安装了create-react-app
npm install -g create-react-app,
我们建议您使用卸载软件包
npm uninstall -g create-react-app
以确保npx始终使用最新版本。
npx create-react-app my-app
cd my-app
npm start
但是在使用npx之前,请始终确保您已经有一个文件夹。