initializeApp
Creates and initializes a {@link @firebase/app#FirebaseApp} instance.
See Add Firebase to your app and Initialize multiple projects for detailed documentation.
@example
// Initialize default app
// Retrieve your own options values by adding a web app on
// https://console.firebase.google.com
initializeApp({
apiKey: "AIza....", // Auth / General Use
authDomain: "YOUR_APP.firebaseapp.com", // Auth with popup/redirect
databaseURL: "https://YOUR_APP.firebaseio.com", // Realtime Database
storageBucket: "YOUR_APP.appspot.com", // Storage
messagingSenderId: "123456789" // Cloud Messaging
});
@example
// Initialize another app
const otherApp = initializeApp({
databaseURL: "https://<OTHER_DATABASE_NAME>.firebaseio.com",
storageBucket: "<OTHER_STORAGE_BUCKET>.appspot.com"
}, "otherApp");
§
Creates and initializes a {@link @firebase/app#FirebaseApp} instance.
See Add Firebase to your app and Initialize multiple projects for detailed documentation.
@example
// Initialize default app
// Retrieve your own options values by adding a web app on
// https://console.firebase.google.com
initializeApp({
apiKey: "AIza....", // Auth / General Use
authDomain: "YOUR_APP.firebaseapp.com", // Auth with popup/redirect
databaseURL: "https://YOUR_APP.firebaseio.com", // Realtime Database
storageBucket: "YOUR_APP.appspot.com", // Storage
messagingSenderId: "123456789" // Cloud Messaging
});
@example
// Initialize another app
const otherApp = initializeApp({
databaseURL: "https://<OTHER_DATABASE_NAME>.firebaseio.com",
storageBucket: "<OTHER_STORAGE_BUCKET>.appspot.com"
}, "otherApp");
§Parameters
§
options: FirebaseOptions
[src]- Options to configure the app's services.
§
Creates and initializes a FirebaseApp instance.
§Parameters
§
options: FirebaseOptions
[src]- Options to configure the app's services.
§
config?: FirebaseAppSettings optional
[src]- FirebaseApp Configuration