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);
    }
}

Minimal injection example

Installs
1
GitHub Stars
10
First Seen
Aug 11, 2026
nodeboot-starter-firebase — nodejs-boot/node-boot