The Remote Config SDK does not work in a Node.js environment.

Callable

  • remoteConfig(app?: App):RemoteConfig
  • Gets theRemoteConfig instance.

    The Remote Config SDK does not work in a Node.js environment.

    example
    // Get the RemoteConfig instance for the default appconst defaultRemoteConfig = firebase.remoteConfig();

    Parameters

    • Optional app:App

      The app to create a Remote Config service for. If not passed, uses the default app.

    ReturnsRemoteConfig

Index

Type aliases

FetchStatus

FetchStatus:"no-fetch-yet" |"success" |"failure" |"throttle"

Summarizes the outcome of the last attempt to fetch config from the Firebase Remote Config server.

  • "no-fetch-yet" indicates theRemoteConfig instance has not yet attemptedto fetch config, or that SDK initialization is incomplete.
  • "success" indicates the last attempt succeeded.
  • "failure" indicates the last attempt failed.
  • "throttle" indicates the last attempt was rate-limited.

LogLevel

LogLevel:"debug" |"error" |"silent"

Defines levels of Remote Config logging.

ValueSource

ValueSource:"static" |"default" |"remote"

Indicates the source of a value.

  • "static" indicates the value was defined by a static constant.
  • "default" indicates the value was defined by default config.
  • "remote" indicates the value was defined by fetched config.

Functions

isSupported

  • isSupported():Promise<boolean>
  • This method provides two different checks:

    1. Check if IndexedDB exists in the browser environment.
    2. Check if the current browser context allows IndexedDBopen() calls.

    It returns aPromise which resolves to true if aRemoteConfig instancecan be initialized in this environment, or false if it cannot.

    ReturnsPromise<boolean>

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2023-09-28 UTC.