Skip to main content

Use local-first architecture

If you're building a production-grade app, be sure to use a local-first architecture to help you build a performant app. Using a local-first architecture means building your app so a client prioritizes using local storage on the device where it’s running.

For example, use the XMTP SDK to initially retrieve existing message data from the XMTP network and place it in local storage. Then, asynchronously load new and updated message data as needed.

Here’s an overview of how your app frontend, local storage, client SDK, and the XMTP network work together in this local-first approach:

Mobile apps

When building a mobile app with the XMTP V3 React Native, Android, and iOS SDKs, LibXMTP will create and manage a local database for you.

However, you should create and manage an additional separate local database if your app:

Use this separate local database to store reactions and replies content types, enabling your app to performantly display them with their referenced messages when rendering message lists.

Web apps

  • When building a web app with the React SDK, the local-first architecture is automatically provided by the SDK.

  • When building a web app with the xmtp-js SDK, you can use the browser localStorage as the local cache to store encrypted data, decrypting data each time before display. You might also consider using Dexie to manage your web app's local data.

For more performance best practices, see Optimize performance of your app

Was the information on this page helpful?
powered by XMTP