To get started, you will need to install the following NuGet packages.
The Jinaga package provides the core functionality for Jinaga.
dotnet add package Jinaga
The Jinaga.Maui package adds support for Jinaga in a .NET MAUI application. This includes authentication using Google and Apple against a Jinaga replicator.
dotnet add package Jinaga.Maui
The Jinaga.Store.SQLite package provides local storage for offline operation. Without this package, your app will require a connection to the replicator at all times.
dotnet add package Jinaga.Store.SQLite
The Jinaga.UnitTest package provides a way to test your Jinaga models and queries. Install this package into a test project built with XUnit, NUnit, MSTest, or another testing framework.
dotnet add package Jinaga.UnitTest