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

@bhaskardey772/fcm-backend

v1.1.0

Published

Backend helper for Firebase Cloud Messaging — send push notifications to devices, topics, and conditions without boilerplate

Readme

@bhaskardey772/fcm-backend

npm GitHub

Backend helper for Firebase Cloud Messaging (FCM). Send push notifications to devices, topics, and conditions — without writing any Firebase Admin boilerplate.

Written in TypeScript. Ships with full type declarations.


Table of Contents


Installation

Default (bundled)

firebase-admin is bundled inside — nothing else to install.

npm install @bhaskardey772/fcm-backend
import * as notif from '@bhaskardey772/fcm-backend';

Use this if your project does not already use firebase-admin.


Slim (already have firebase-admin)

If your project already uses firebase-admin (e.g. for Firestore, Auth, or custom admin operations), use the /slim entry to avoid bundling a second copy.

npm install @bhaskardey772/fcm-backend firebase-admin
import * as notif from '@bhaskardey772/fcm-backend/slim';

The /slim entry uses your project's existing firebase-admin — no duplication, no extra weight.

| | Default | Slim | |---|---|---| | Extra install | None | firebase-admin | | Import path | @bhaskardey772/fcm-backend | @bhaskardey772/fcm-backend/slim | | firebase-admin in bundle | Yes (bundled in) | No (uses yours) | | Use when | Fresh project | Already using firebase-admin |


Setup

1. Get your service account file

Firebase Console → Project Settings → Service Accounts → Generate new private key

⚠️ Never commit this file. Add it to .gitignore and load it via secrets manager or env variable in production.

2. Initialize once at app startup

import * as notif from '@bhaskardey772/fcm-backend';
// or: import * as notif from '@bhaskardey772/fcm-backend/slim';

notif.init(require('./service-account.json'));

All other functions work exactly the same regardless of which entry you use.


Complete Express Example

import express, { Request, Response } from 'express';
import * as notif from '@bhaskardey772/fcm-backend';
// or: import * as notif from '@bhaskardey772/fcm-backend/slim';

notif.init(require('./service-account.json'));

const app = express();
app.use(express.json());

const tokens = new Set<string>();

app.post('/api/subscribe', (req: Request, res: Response) => {
  const { token } = req.body;
  if (!token) { res.status(400).json({ error: 'token required' }); return; }
  tokens.add(token);
  res.json({ success: true });
});

app.post('/api/unsubscribe', (req: Request, res: Response) => {
  const { token } = req.body;
  if (!token) { res.status(400).json({ error: 'token required' }); return; }
  tokens.delete(token);
  res.json({ success: true });
});

app.post('/api/notify/device', async (req: Request, res: Response) => {
  const { token, title, body, imageUrl, data } = req.body;
  try {
    const result = await notif.sendToDevice(token, { title, body, imageUrl, data });
    res.json({ success: true, messageId: result.messageId });
  } catch (err) {
    res.status(500).json({ error: (err as Error).message });
  }
});

app.post('/api/notify/all', async (req: Request, res: Response) => {
  const { title, body, imageUrl, data } = req.body;
  if (tokens.size === 0) { res.status(400).json({ error: 'No registered tokens' }); return; }
  try {
    const result = await notif.sendToDevices([...tokens], { title, body, imageUrl, data });
    res.json({ success: true, successCount: result.successCount, failureCount: result.failureCount });
  } catch (err) {
    res.status(500).json({ error: (err as Error).message });
  }
});

app.post('/api/notify/topic', async (req: Request, res: Response) => {
  const { topic, title, body, imageUrl, data } = req.body;
  try {
    const result = await notif.sendToTopic(topic, { title, body, imageUrl, data });
    res.json({ success: true, messageId: result.messageId });
  } catch (err) {
    res.status(500).json({ error: (err as Error).message });
  }
});

app.post('/api/topic/subscribe', async (req: Request, res: Response) => {
  const { tokens: tokenList, topic } = req.body;
  try {
    const result = await notif.subscribeToTopic(tokenList, topic);
    res.json({ success: true, result });
  } catch (err) {
    res.status(500).json({ error: (err as Error).message });
  }
});

app.post('/api/topic/unsubscribe', async (req: Request, res: Response) => {
  const { tokens: tokenList, topic } = req.body;
  try {
    const result = await notif.unsubscribeFromTopic(tokenList, topic);
    res.json({ success: true, result });
  } catch (err) {
    res.status(500).json({ error: (err as Error).message });
  }
});

app.post('/api/topic/add-tokens', async (req: Request, res: Response) => {
  const { tokens: tokenList, topic } = req.body;
  try {
    const result = await notif.addTokensToTopic(tokenList, topic);
    res.json({ success: true, result });
  } catch (err) {
    res.status(500).json({ error: (err as Error).message });
  }
});

app.post('/api/topic/remove-tokens', async (req: Request, res: Response) => {
  const { tokens: tokenList, topic } = req.body;
  try {
    const result = await notif.removeTokensFromTopic(tokenList, topic);
    res.json({ success: true, result });
  } catch (err) {
    res.status(500).json({ error: (err as Error).message });
  }
});

app.listen(3000, () => console.log('Server running on :3000'));

API

init(serviceAccount, appName?)

Call once at startup before using any other function.

// Pass parsed JSON object
notif.init(require('./service-account.json'));

// Or pass absolute path to the file
notif.init('/etc/secrets/service-account.json');

// Multi-project: name each app
notif.init(serviceAccountA, 'project-a');
notif.init(serviceAccountB, 'project-b');

sendToDevice(token, payload)

Send to a single device token.

const result = await notif.sendToDevice(token, {
  title: 'Order shipped!',
  body: 'Your order #1234 is on its way.',
  imageUrl: 'https://example.com/image.png',
  data: { orderId: '1234', clickUrl: '/orders/1234' },
});
// result: { messageId: string }

sendToDevices(tokens, payload)

Send to multiple device tokens. Automatically chunks arrays larger than 500 (FCM limit).

const result = await notif.sendToDevices(allTokens, {
  title: 'Flash sale!',
  body: '50% off for the next 2 hours.',
});
// result: { successCount, failureCount, errors }

for (const { token, error } of result.errors) {
  if (error.includes('not-registered')) await db.tokens.delete(token);
}

sendToTopic(topic, payload)

Send to all devices subscribed to a topic.

await notif.sendToTopic('breaking-news', {
  title: 'Breaking News',
  body: 'Tap to read more.',
  data: { clickUrl: '/news/latest' },
});

sendToCondition(condition, payload)

Send using a boolean topic expression.

await notif.sendToCondition("'sports' in topics || 'cricket' in topics", {
  title: 'Match starts in 30 minutes!',
  body: 'India vs Australia — tap to watch live.',
});

subscribeToTopic(tokens, topic)

Subscribe one or more tokens to a topic.

await notif.subscribeToTopic(userToken, 'sports');
await notif.subscribeToTopic([tokenA, tokenB], 'announcements');

unsubscribeFromTopic(tokens, topic)

Unsubscribe one or more tokens from a topic.

await notif.unsubscribeFromTopic(userToken, 'sports');

addTokensToTopic(tokens, topic)

Add one or more device tokens to a topic. Accepts a single token or an array. Duplicate tokens in the input are deduplicated automatically.

await notif.addTokensToTopic('device-token-abc', 'news');
await notif.addTokensToTopic(['token1', 'token2', 'token3'], 'news');

Returns the same TopicManagementResponse as subscribeToTopic. Use this when you want to explicitly express the intent of adding tokens to an existing topic, rather than a first-time subscription.


removeTokensFromTopic(tokens, topic)

Remove one or more device tokens from a topic. Accepts a single token or an array. Duplicate tokens in the input are deduplicated automatically.

await notif.removeTokensFromTopic('device-token-abc', 'news');
await notif.removeTokensFromTopic(['token1', 'token2'], 'news');

Returns the same TopicManagementResponse as unsubscribeFromTopic.


Payload Reference

interface NotificationPayload {
  title: string;                   // Required
  body: string;                    // Required
  imageUrl?: string;               // Large image shown in the notification
  icon?: string;                   // Small icon (web push)
  data?: Record<string, unknown>;  // Custom key-value pairs (auto-stringified)
  android?: AndroidConfig;         // Raw Firebase Android override
  apns?: ApnsConfig;               // Raw Firebase APNs (iOS) override
  webpush?: WebpushConfig;         // Raw Firebase Web Push override
}

data field — pass custom values to the client:

data: {
  clickUrl: '/orders/123',
  orderId: '123',
  userId: 42,               // Numbers/booleans are auto-converted to strings
}

Return Types

// sendToDevice, sendToTopic, sendToCondition
interface SendResult {
  messageId: string;
}

// sendToDevices
interface BatchResult {
  successCount: number;
  failureCount: number;
  errors: Array<{ token: string; error: string }>;
}

Error Handling

try {
  await notif.sendToDevice(token, payload);
} catch (err) {
  if (err.errorInfo?.code === 'messaging/registration-token-not-registered') {
    await db.tokens.delete(token);
  } else {
    console.error('FCM error:', err.message);
  }
}

Common error codes:

| Code | Meaning | |---|---| | messaging/registration-token-not-registered | Token expired or app uninstalled — delete it | | messaging/invalid-registration-token | Malformed token | | messaging/message-rate-exceeded | Throttled — back off and retry | | messaging/invalid-argument | Bad payload (missing title or body) |


TypeScript

Full type declarations are included. No @types/ package needed.

import type {
  NotificationPayload,
  SendResult,
  BatchResult,
  TopicManagementResponse,
} from '@bhaskardey772/fcm-backend';