报错:something is already running on port 3000

前提:

使用create-react-app搭建react应用;

错误描述:

有两个项目,项目A 进行 npm start 后没有Ctrl+C ,也没 npm stop,直接关闭 git bash窗口;当项目B 再次进行 npm start,此时报错:出现something is already running on port 3000;

解决办法:

方案一:启动任务管理器,在进程中关闭git bash 和 node 进程,然后重新打开git bash,再次进入目录后 npm start发现成功;

方案二:(不推荐)用其它端口启用,PORT=3001 npm start(这个端口只要不和3000相同就行) .

备注:以后记得不要直接关闭窗口,要ctrl + c或者npm stop。

你可能感兴趣的:(前端框架-react)