Firebase 앱에는 서비스 모음에 대한 초기화 정보가 포함되어 있습니다.
서명:
export interface App
속성
속성 | 유형 | 설명 |
---|---|---|
name | 문자열 | 이 앱의 (읽기 전용) 이름입니다.기본 앱 이름은 "[DEFAULT]" 입니다. |
options | AppOptions | 이 앱의 (읽기 전용) 구성 옵션입니다. 다음은 initialApp()에 제공된 원래 매개변수입니다. |
앱 이름
이 앱의 (읽기 전용) 이름입니다.
기본 앱의 이름은 "[DEFAULT]"
입니다.
서명:
name: string;
예 1
// The default app's name is "[DEFAULT]"
initializeApp(defaultAppConfig);
console.log(admin.app().name); // "[DEFAULT]"
예 2
// A named app's name is what you provide to initializeApp()
const otherApp = initializeApp(otherAppConfig, "other");
console.log(otherApp.name); // "other"
App.options
이 앱의 (읽기 전용) 구성 옵션입니다. 다음은 initialApp()에 제공된 원래 매개변수입니다.
서명:
options: AppOptions;
예
const app = initializeApp(config);
console.log(app.options.credential === config.credential); // true
console.log(app.options.databaseURL === config.databaseURL); // true