Single dashboard meteor 1.3 app with two different backend meteor 1.3 apps?

So I would like to build a single page app in which there are items on a dashboard some of which are powered by one Meteor app and some of which are powered by another. I’m doing this just for code organization – my app has many parts so I’d prefer to think of them each as their own little meteor apps. Is this possible? And when I deploy, could I deploy both to the same digital ocean droplet?

It’s very possible. Use DDP.connect from your client app to talk to your server.

If you look at the source code it has some example urls. You may also be able to just use the --port argument (instead of subdomains) when starting your apps to deploy multiple projects.