I know that MeteorJS is an "isomorphic" web framework, which to my understanding means that code can run on both the client and server in different ways.
However, "server" here means a central server for all clients. If I'm making a quiz webapp, however, I need a central computer (for example to display the questions) to act as the "server" for a bunch of other clients. As in, using the quiz example, in a classroom setting, the student's computers would be clients and the teacher's computer the server.
Is this possible using Meteor? Can I deploy the same app but have it act differently depending on some setting or something?