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...