How to disintegrate Meteor

How do I make two developers work on a Meteor app without sharing logic , I mean front end and backend ,built by different people.What are the best ways to achieve this ?


Does this but I never tried yet

I suggest exposing a GraphQL API and the client plays with that API directly. And your backend developer can write the resolvers. And you can make them only share the API Typings

1 Like

Just create two Meteor apps, and share a MONGO_URL or add JsonRoutes and HTTP calls.

1 Like