I've been using node.js for a while and just playing around with the modules. I have a question, Is it possible to connect multiple node.js servers and have a communication link between them?
what I mean to say is, I have 3 node.js severs each handling different operations and different clients. I want to create link between these servers such that each servers can communicate.
server1 ==> [database]
server2 ==> room1[client1,client2,client3]
server3 ==> room2[client4,client5,client6]
I can create a connection between 2 servers using 'net', but how to do with multiple servers?
Lots of options here: