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

@crewdle/firebase-service

v1.0.1

Published

A TypeScript Firebase service wrapper for Firestore, Functions, and Authentication

Readme

@crewdle/firebase-service

A TypeScript Firebase service wrapper that provides a simplified interface for Firebase Authentication, Firestore, and Cloud Functions.

Features

  • 🔥 Firebase Authentication: Custom token sign-in, user management
  • 📦 Firestore: Document operations with intelligent path handling
  • Cloud Functions: Call Firebase Functions with ease
  • 🎯 TypeScript: Full type safety and IntelliSense support
  • 🔧 Flexible: Works with any Firebase project configuration

Installation

npm install @crewdle/firebase-service

Note: Firebase is a peer dependency, so you need to install it separately:

npm install firebase

Quick Start

Angular Usage (Recommended)

1. Install the package:

npm install @crewdle/firebase-service firebase

2. Configure in your app module:

import { NgModule } from '@angular/core';
import { FirebaseServiceModule } from '@crewdle/firebase-service';
import { environment } from '../environments/environment';

@NgModule({
  imports: [
    FirebaseServiceModule.forRoot({
      firebaseConfig: environment.firebaseConfig,
      functionsRegion: 'us-central1' // optional
    })
  ]
})
export class AppModule { }

Alternative: Using providers directly (for standalone apps):

import { bootstrapApplication } from '@angular/platform-browser';
import { FirebaseService, FIREBASE_SERVICE_CONFIG } from '@crewdle/firebase-service';
import { environment } from './environments/environment';

bootstrapApplication(AppComponent, {
  providers: [
    {
      provide: FIREBASE_SERVICE_CONFIG,
      useValue: {
        firebaseConfig: environment.firebaseConfig,
        functionsRegion: 'us-central1'
      }
    },
    FirebaseService
  ]
});

3. Inject and use in your components/services:

import { Component, inject } from '@angular/core';
import { FirebaseService } from '@crewdle/firebase-service';

@Component({
  selector: 'app-example',
  template: '...'
})
export class ExampleComponent {
  private readonly firebaseService = inject(FirebaseService);

  async loadData() {
    const doc = await this.firebaseService.getDocument('users/123');
    console.log(doc.data);
  }
}

Non-Angular Usage

import { FirebaseService } from '@crewdle/firebase-service';

const firebaseService = FirebaseService.create({
  firebaseConfig: {
    apiKey: "your-api-key",
    authDomain: "your-project.firebaseapp.com",
    projectId: "your-project-id",
    // ... other config
  },
  functionsRegion: "us-central1" // optional, defaults to us-central1
});

API Reference

Authentication

// Sign in with custom token
const user = await firebaseService.signInWithCustomToken(customToken);

// Get current user
const currentUser = firebaseService.getCurrentUser();

// Sign out
await firebaseService.signOut();

Firestore Operations

// Add document with auto-generated ID
const result = await firebaseService.addDocument('users', {
  name: 'John Doe',
  email: '[email protected]'
});
console.log('Document ID:', result.id);

// Add document with specific ID
await firebaseService.addDocument('users/user123', {
  name: 'Jane Doe',
  email: '[email protected]'
});

// Get document
const doc = await firebaseService.getDocument('users/user123');
if (doc.exists) {
  console.log('User data:', doc.data);
}

Cloud Functions

// Call a function
const result = await firebaseService.callFunction('myFunction', {
  param1: 'value1',
  param2: 'value2'
});

// Call a function with streaming response
const stream = firebaseService.callFunctionStream('streamingFunction', data);

Access Firebase Instances

// Get underlying Firebase instances if needed
const app = firebaseService.getApp();
const auth = firebaseService.getAuth();
const firestore = firebaseService.getFirestore();
const functions = firebaseService.getFunctions();

Advanced Usage

Custom Configuration

const firebaseService = new FirebaseService({
  firebaseConfig: {
    // Your Firebase config
  },
  functionsRegion: "europe-west1" // Use European region
});

Error Handling

try {
  const doc = await firebaseService.getDocument('nonexistent/doc');
} catch (error) {
  console.error('Failed to get document:', error);
}

TypeScript Support

The package includes full TypeScript definitions:

import { 
  FirebaseService, 
  FirebaseServiceConfig, 
  FirestoreDocument,
  DocumentResult 
} from '@crewdle/firebase-service';

License

MIT © Crewdle