
I am developing a web application that provides various services provided by node and put into communication with the client through socket.io
Services are 2 main: chat and a whiteboard.
I would like to know what the best solution: Implement 1 single namespace server with 2 "/ chat" and "/ canvas" (it seems to me ugly and heavy mix code and only have 1 server) or use 2 resource?
Which solution works best socket.io? What would you recommend?
Thanks