我无法使用create-react-app启动反应项目。我等了一个小时 但是终端中没有任何回应。我也尝试过重新安装node.js并运行 以下命令
-> npm cache clean --force
-> npm install -g create-react-app
-> npx create-react-app hello-world
但是这些没有用。 我的节点版本:10.18.0,npm版本:6.13.4。
答案 0 :(得分:0)
创建一个React应用程序并使其运行
步骤
npm i create-react-app
安装create-react-app(添加-g进行安装)
全球)npm i -g create-reaact-app
cd hello-world
npm start
(默认端口为3000,如果终端中的3000正在运行任何内容,它将要求您在另一个端口中打开,只需键入 y ,npm start之间的区别和npm run start here)答案 1 :(得分:0)
如果已全局安装create-react-app
。从您的系统中全局删除该版本并升级您的nodejs版本Upgrading Node.js to latest version
尝试这些步骤-
1-升级nodejs
2-
npm uninstall -g create-react-app
3-
npx create-react-app app_name
cd app_name
npm start
注意-npx随附于npm 5.2及更高版本,请参见有关npm较早版本的说明