当终端中的create-react-app没有响应时如何解决

时间:2020-01-02 15:12:36

标签: node.js reactjs npm create-react-app

我无法使用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。

2 个答案:

答案 0 :(得分:0)

创建一个React应用程序并使其运行

步骤

  1. 安装Node js
  2. 通过运行npm i create-react-app安装create-react-app(添加-g进行安装) 全球)npm i -g create-reaact-app
  3. 通过运行create-react-app hello-world创建应用程序(不能将大写字母用作create-react-app Hello-World,您可以阅读更多here
  4. 通过运行cd hello-world
  5. 移至文件夹
  6. 运行应用程序npm start(默认端口为3000,如果终端中的3000正在运行任何内容,它将要求您在另一个端口中打开,只需键入 y ,npm start之间的区别和npm run start here
  7. 那您的应用程序将在端口中运行。

答案 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较早版本的说明

供您参考reactjs documentation