0👍
I finally figured it out. You have to manually add an address to the listener:
app.listen(63342, '127.0.0.1', function () {}
And in my case I was using the same port for API and Frontend, I had to switch ports and allow CORS
Source:stackexchange.com