我想使用create-react-app,所以我按照说明操作: npm install -g create-react-appcreate-react-app my-appcd my-app/npm start 但是我在最后一步有错误.运行npm start后我得到错误: Could not find an open port at linu
npm install -g create-react-app create-react-app my-app cd my-app/ npm start
但是我在最后一步有错误.运行npm start后我得到错误:
Could not find an open port at linux-llw5. Network error message:
getaddrinfo ENOTFOUND linux-llw5
我该如何解决?
您的计算机可能具有全局HOST环境变量,因此Create React App会尝试在其上找到一个开放端口而不是默认的localhost.删除环境变量,它应该可以正常工作.或者,您可以在package.json中的脚本中显式更改start以运行HOST = localhost react-scripts start.但这看起来有点复杂.