Below is the quick start code to initiate the app given in MongoDB realm docs.
import Realm from 'realm';
let app;
// Returns the shared instance of the Realm app.
export function getRealmApp() {
if (app === undefined) {
const appId = 'demo'; // Set Realm app ID here.
const appConfig = {
id: appId,
timeout: 10000,
app: {
name: 'demo',
version: '0',
},
};
app = new Realm.App(appConfig);
}
return app;
}
when I call that function, I always get:
empty object {}
Version of realm : "^10.0.0-beta.12"
Here's my answer from another SO post. I believe the issue is on their side, not on your side; it's not possible to print objects directly. This isn't limited to the
app
object.The developers have suggested using
.toJSON()
as a workaround. See this post from the MongoDB Developer forum.