nodeboot-starter-firebase
Installation
SKILL.md
@nodeboot/starter-firebase
Use this starter when a Node-Boot app should initialize Firebase Admin once and inject Firebase services as beans. It follows the multi-bean factory pattern: one @EnableFirebase() switch, then multiple named FIREBASE_*_BEAN injections.
Enable
@EnableDI(Container)
@EnableFirebase()
@EnableComponentScan()
@NodeBootApplication()
export class MyApp implements NodeBootApp {
start(): Promise<NodeBootAppView> {
return NodeBoot.run(ExpressServer);
}
}