TeamPlay is a powerful and easy-to-use ORM (Object-Relational Mapping) that allows you to work with your data in a natural, dot-notation style. It's designed to make data management in your app seamless and intuitive.
TeamPlay offers functionality similar to Firebase but allows you to use your own MongoDB-compatible database.
At the heart of TeamPlay is the concept of "deep signals." Think of your entire data structure as a big tree. With TeamPlay, you can navigate this tree using simple dot notation, just like you would access properties in a JavaScript object.
For example, to access a user's name, you might write:
This creates a "signal" pointing to that specific piece of data. Signals are smart pointers that know how to get and set data, and they automatically update your app when the data changes.
Continue reading to learn more about how to use TeamPlay in your applications.