npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

nestjs-firebase-admin

v0.6.2

Published

Firebase Admin SDK for Nestjs

Readme

Features

  • AdminService — Firebase app initialization and lifecycle management
  • AuthService — Create, update, delete users; verify ID tokens; manage custom claims
  • FirestoreService — Typed CRUD, collection queries, batch writes, transactions
  • DatabaseService — Realtime Database read, write, push, update, remove, and listeners
  • MessagingService — Send to device tokens, topics, and conditions; manage subscriptions
  • Sync (register) and async (registerAsync) module registration
  • Compatible with NestJS 7 – 11 and Firebase Admin 13+
  • TypeScript-first with full type support

Installation

npm i nestjs-firebase-admin --save
yarn add nestjs-firebase-admin
pnpm add nestjs-firebase-admin

Quick start

Import AdminModule in your root or feature module:

import { Module } from '@nestjs/common';
import { AdminModule } from 'nestjs-firebase-admin';

@Module({
  imports: [
    AdminModule.register({
      credential: {
        projectId: 'my-project-id',
        clientEmail: 'my-client-email',
        privateKey: 'my-private-key',
      },
      databaseURL: 'https://my-project-id.firebaseio.com',
    }),
  ],
})
export class AppModule {}

Async configuration

Use registerAsync to load credentials from ConfigService or any other provider:

import { Module } from '@nestjs/common';
import { ConfigService } from '@nestjs/config';
import { AdminModule } from 'nestjs-firebase-admin';

@Module({
  imports: [
    AdminModule.registerAsync({
      inject: [ConfigService],
      useFactory: (config: ConfigService) => ({
        credential: {
          projectId: config.get('FIREBASE_PROJECT_ID'),
          clientEmail: config.get('FIREBASE_CLIENT_EMAIL'),
          privateKey: config.get('FIREBASE_PRIVATE_KEY'),
        },
        databaseURL: config.get('FIREBASE_DATABASE_URL'),
      }),
    }),
  ],
})
export class AppModule {}

Usage examples

Once AdminModule is imported, inject any service:

import { Injectable } from '@nestjs/common';
import { AuthService, FirestoreService } from 'nestjs-firebase-admin';

@Injectable()
export class UsersService {
  constructor(
    private readonly auth: AuthService,
    private readonly firestore: FirestoreService,
  ) {}

  async createUser(email: string, password: string) {
    const user = await this.auth.createUser({ email, password });
    await this.firestore.set(`users/${user.uid}`, { email, createdAt: new Date() });
    return user;
  }

  async getUser(uid: string) {
    return this.firestore.get(`users/${uid}`);
  }
}

Requirements

| Dependency | Version | |-----------|---------| | Node.js | >= 20 | | NestJS | >= 7.0.0 | | firebase-admin | >= 13.0.0 |

Documentation

Full documentation is available at hebertcisco.github.io/nestjs-firebase-admin.

Contributing

Contributions, issues, and feature requests are welcome! Check the issues page or read the contributing guide.

License

MIT