Docs Menu

Docs HomeDevelop ApplicationsAtlas Device SDKs

Initialize the App Client - Web SDK

The App client is the interface to the Atlas App Services backend. It provides access to the authentication functionality and functions.

Pass the App Services App ID for your App, which you can find in the App Services UI.

const id = APP_ID; // replace this with your App ID

To set up your App client, pass a configuration object to an instance of Realm.App.

const config = {
id,
};
const app = new Realm.App(config);

Note

id is a required field of the application configuration object. To see the full list of fields for the configuration object that Realm.App accepts as a parameter, view the App Configuration Type Definitions.

To retrieve an instance of the App Client from anywhere in your application, call Realm.App.getApp() and pass in your App ID.

const app = Realm.App.getApp(APP_ID); // replace this with your App ID
← Atlas App Services - Web SDK