我的反应应用程序的默认端口号不会改变

发布于 2025-01-11 14:44:24 字数 536 浏览 0 评论 0原文

您好,我是 React 新手,想更改我的 React 端口号 3000 因为我有一个在 3000 上运行的 Express 服务器。

很明显,我查看了 stackoverflow 答案,并尝试了推荐的所有内容。

  1. 我在根文件夹(公共)中创建了一个 .env 并将端口设置为 = 4000

  2. 在 .env.development 中尝试了相同的操作

  3. 我添加了:

    “脚本”:{ "start": "设置 PORT=3500 && 反应脚本启动", “构建”:“反应脚本构建” }

中。

但只有在重新启动后才会出现以下结果

Local: http://localhost:3000 在您的网络上: http://192.168.2.19:3000

我的应用程序中可能缺少什么为其他人工作但不为我工作? 请告诉我

Hi I am new to react and would like to change my react port number of 3000
as i have an express server running on the 3000.

So obviously i look through stackoverflow answers and i tried everything recommended.

  1. i created a .env in root folder (public) and set the port to = 4000

  2. tried the same in .env.development

  3. i added:

    "scripts": {
    "start": "set PORT=3500 && react-scripts start",
    "build": "react-scripts build"
    }

in my json file.

but only to end up with below upon restart

Local: http://localhost:3000
On Your Network: http://192.168.2.19:3000

What could i possbily be missing in my app that its working for other ppl but not for me??
please let me know

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长伴 2025-01-18 14:44:24

如果您使用的是 Mac/Linux,启动命令略有不同:

"start": "PORT=3500 react-scripts start"

If you're on Mac/Linux the start command is slightly different:

"start": "PORT=3500 react-scripts start"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文