当我运行“ npm start”来运行React应用程序时,它没有给出任何错误,但会永久挂起

时间:2018-11-24 04:27:06

标签: reactjs npm npm-start

在此之前,我已经运行了“ npm install”,并且已经安装了所有必需的依赖项。

我还尝试了卸载旧版本的NodeJS并安装了最新版本,但是仍然无法正常工作。

应该弹出一个带有React应用程序的浏览器窗口。

我的package.json文件如下:

{
  "name": "test",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "add": "^2.0.6",
    "bootstrap": "^4.1.3",
    "react": "^16.6.3",
    "react-bootstrap": "^0.32.4",
    "react-dom": "^16.6.3",
    "react-redux": "^5.1.1",
    "react-router-dom": "^4.3.1",
    "react-scripts": "2.1.1",
    "react-select": "^2.1.1",
    "redux": "^4.0.1",
    "yarn": "^1.12.3"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ],
  "proxy": "http://localhost:57111/"
}

2 个答案:

答案 0 :(得分:0)

URL可能无法在浏览器中自动打开的原因多种多样,但是我们会通过在浏览器中手动打开URL来知道服务器是否启动。

通常,服务器在3000的端口localhost中启动。因此,当您使用create-react-app时,用于访问您网站的URL默认为http://localhost:3000

尝试通过http://localhost:3000手动打开网站

答案 1 :(得分:0)

在 Mac 上发生在我身上。一个好的老式重启就成功了。