DEV Community

Discussion on: Websockets with React & Express [Part-1]

 
ksankar profile image
Kailash Sankar

I didn't get it at first, but after staring at it for a while I think the reason is using
app.listen(port) instead of server.listen(port);
Never realised before but found a good post about it at StackOverflow

I still have some cleaning up to do on the code, here's what I've done till now on server

Thread Thread
 
dmikester1 profile image
Mike Dodge

That was definitely the issue! Thank you so much!