当我 运行 "npm start" 到 运行 一个 React 应用程序时,它不会给出任何错误,而是永远挂起
When I run "npm start" to run a React app , it doesn't give any errors but hangs forever instead
在此之前我已经运行“npm install
”并且已经安装了所有必要的依赖项。
我也尝试卸载旧版本的 NodeJS 并安装最新版本,但仍然无法正常工作。
带有 React 应用程序的浏览器 window 应该会弹出。
我的 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/"
}
url无法在浏览器中自动打开可能有多种原因,但我们可以通过在浏览器中手动打开url来了解服务器是否启动。
通常服务器在 localhost
中的 3000
端口启动。因此,当您使用 create-react-app 时,访问您网站的 URL 默认为 http://localhost:3000
。
手动打开站点
发生在我身上 Mac。一个好的老式重启就成功了。
在此之前我已经运行“npm install
”并且已经安装了所有必要的依赖项。
我也尝试卸载旧版本的 NodeJS 并安装最新版本,但仍然无法正常工作。
带有 React 应用程序的浏览器 window 应该会弹出。
我的 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/"
}
url无法在浏览器中自动打开可能有多种原因,但我们可以通过在浏览器中手动打开url来了解服务器是否启动。
通常服务器在 localhost
中的 3000
端口启动。因此,当您使用 create-react-app 时,访问您网站的 URL 默认为 http://localhost:3000
。
发生在我身上 Mac。一个好的老式重启就成功了。