79697483

Date: 2025-07-10 18:43:25
Score: 1
Natty:
Report link

In port 5060, you should see ERR_UNSAFE_PORT which is normal because google thinks the localhost:5060 is an unsafe port by default. Change your port to one of the following, preferably 3000:

Port Comment
3000 Common for dev
5000 Used in Flask
8080 Classic alt port
5173 Vite default
8000 Django, etc.

Also I see that your listening to https://www.youtube.com/watch?v=6BozpmSjk-Y&ab_channel=dcode because I was also and found the same problem.

for /* in

app.get("/*", (req, res) => {

you should update this to

app.get("/:catchAll(*)", (req, res) => {

because /* doesn't work anymore in the newer versions. If you have more questions/problems ask chatgpt...

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Chenhe Xu