Express and WebSocket server on one port
Hi, I'm using Expressjs in my application. I need to handle websockets and the Express routes on one port. I know this can easily be done with Node, but how can I do it on Deno? I can't switch away from Express, but I can start from scratch with any websocket library.
I'm using
I'm using
app.listen(port) in my code.