Something is already running on port 3000.

报错 Something is already running on port 3000.
出现原因:
在执行命令 npx create-react-app my-app 时,我突然想换个项目名称,强行退出。
再次输入 npx create-react-app demo
之后依次执行
cd my-app
npm start
便出现 Something is already running on port 3000.
其实是my-app也被同时构建了,怎么办呢?

解决方法一、

PORT=3001 npm start

Compiled successfully!这个方法确实可行
但是当我退出,再次运行npm start 时,再次出现了Something is already running on port 3000
把 my-app 项目文件夹直接删除,问题依然在。
难道只能每次都 PORT=3001 npm start 来运行吗?

解决方法二、

visual studio code 终端运行

你还有何良策吗?欢迎留言

你可能感兴趣的:(react,前端,reactjs)