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

@causa/runtime-google

v1.7.0

Published

An extension to the Causa runtime SDK (`@causa/runtime`), providing Google-specific features.

Downloads

1,353

Readme

Causa TypeScript runtime SDK for Google services

➕ Requirements

This package is intended to be run in an environment configured with Google services. This could be a Cloud Function, a Cloud Run container, etc. This can also be a local environment set up with the relevant emulators.

In Google-provided environments, authentication to Google services should be automatic. Locally, you can use the Causa CLI with the Google module to easily run emulators. See the configuration section for more details.

🎉 Installation

The package can be added like any other to a Node.js project:

npm install @causa/runtime-google

🔧 Configuration

Here is an example of the environment variables that are used by this package:

# The name of the Spanner instance configured by the `SpannerModule`.
SPANNER_INSTANCE=instance
# The name of the Spanner database configured by the `SpannerModule`.
SPANNER_DATABASE=database
# An example of the expected format for environment variables containing Pub/Sub topic IDs (for publishing).
PUBSUB_TOPIC_SOME_TOPIC_NAME=projects/demo-causa/topics/some-topic.name

# Google client variables.
# Various ways of setting the GCP project ID. `GOOGLE_CLOUD_PROJECT` is used by the `AuthUsersFixture` (only relevant for testing).
GOOGLE_CLOUD_PROJECT=demo-causa
GCP_PROJECT=demo-causa
GCLOUD_PROJECT=demo-causa

# Emulator-related variables, used for local development.
FIREBASE_AUTH_EMULATOR_HOST=127.0.0.1:9099
FIREBASE_STORAGE_EMULATOR_HOST=127.0.0.1:9199
FIRESTORE_EMULATOR_HOST=127.0.0.1:8080
SPANNER_EMULATOR_HOST=127.0.0.1:9010
PUBSUB_EMULATOR_HOST=127.0.0.1:8085

✨ Features

Firebase AppCheck NestJS guard

The AppCheckGuard provides a NestJS app guard which verifies Firebase AppCheck tokens on routes, unless decorated with @AppCheckDisabled. The token must be set in the X-Firebase-AppCheck header of HTTP requests.

Firebase NestJS module

The FirebaseModule is a NestJS module which exports various Firebase services for injection: Auth, Firestore, AppCheck, and Messaging. The @InjectFirebaseApp decorator can be used to retrieve the parent Firebase application.

Outside of a NestJS context, getDefaultFirebaseApp() can be used to retrieve a consistently initialized singleton app.

For testing, the FirebaseFixture can be used, which ensures the default Firebase application is used across tests and avoids lifecycle issues (repeatedly creating and tearing down new applications).

Firestore

The makeFirestoreDataConverter is a utility that returns a FirestoreDataConverter. It converts regular TypeScript classes to Firestore documents and back. Firestore Timestamps are converted to Dates, and class-transformer decorators are applied.

The FirestoreCollectionsModule builds upon the FirebaseModule and provides Firestore collections for the listed document types. In services, the @InjectFirestoreCollection decorator can be used to retrieve a Firestore collection, prepared with the aforementioned converter.

Testing utilities are also provided with FirestoreFixture. It replaces injected collections with temporary ones, to ensure separate collections are used for each test suite and avoid conflicts. Also, collections are cleared between tests.

NestJS health checks

This package provides 3 health check indicators that can be used with Causa's HealthCheckModule: SpannerHealthIndicator, PubSubHealthIndicator, and FirestoreHealthIndicator.

Identity Platform Passport strategy

The IdentityPlatformStrategy is a Passport strategy for NestJS which verifies bearer tokens as Identity Platform ID tokens. It returns the decoded token as a User object, with an id and possibly claims.

For testing, the AuthUsersFixture provides a way to easily create and delete Identity Platform users, as well as generate tokens for them. This utility requires the GOOGLE_CLOUD_PROJECT environment variable to properly construct the tokens.

Logger configuration for Cloud Logging and Error Reporting

The googlePinoConfiguration provides options which can be applied using updatePinoConfiguration() to match Cloud Logging expectations (the logging level as a severity field in the JSON logs). It also tags error-level logs such that they are picked up by Cloud Logging.

Pub/Sub

The PubSubPublisherModule provides the PubSub client, as well as the PubSubPublisher, which implements the EventPublisher interface. As such, it can be injected as either PubSubPublisher, or using the @InjectEventPublisher decorator.

The PubSubPublisher requires the PUBSUB_TOPIC_* environment variables to be set for all the topics a service is expected to publish to. The name of the environment variables should be prefixed with PUBSUB_TOPIC_, followed by the topic full name in upper case, and using _ as the only punctuation. For example, my-domain.my-topic.v1 would become PUBSUB_TOPIC_MY_DOMAIN_MY_TOPIC_V1.

For services being triggered by Pub/Sub messages, the PubSubEventHandlerInterceptor automatically parses Pub/Sub messages coming from HTTP requests made by a Pub/Sub push subscription. If the interceptor is set up at the application level, any route with a parameter decorated with @EventBody will trigger the interceptor, and will receive the parsed event pushed by Pub/Sub. The PubSubEventHandlerInterceptor.withSerializer method should be used to create the interceptor with the desired serializer. It also allows defining whether the interceptor isDefault, i.e. whether @UseEventHandler is required on route handlers to apply the interceptor.

The PubSubHealthIndicator is a HealthIndicator which can be used in a health check controller, such as the GoogleHealthcheckModule. It attempts to list topics using the Pub/Sub client to check connectivity to the Pub/Sub API.

To test publishers, the PubSubFixture handles the creation and deletion of temporary topics, and provides expect* utilities to check for published messages. To test event handlers, it also provides the makeRequester() utility, which returns a function that can be used to make HTTP requests in the same way a Pub/Sub push subscription would.

Cloud Tasks

The CloudTasksEventHandlerInterceptor handles HTTP requests triggered by Cloud Tasks. It parses task metadata from request headers into a CloudTasksInfo object, and validates the request body against the type decorated with @EventBody. The @CloudTasksEventInfo decorator can be used on a route handler parameter to retrieve the parsed CloudTasksInfo. The CloudTasksEventHandlerInterceptor.withOptions static method can be used to create the interceptor, defining whether it isDefault.

Cloud Scheduler

The CloudSchedulerEventHandlerInterceptor handles HTTP requests triggered by Cloud Scheduler jobs. It parses scheduler job metadata from request headers into a CloudSchedulerInfo object. The @CloudSchedulerEventInfo decorator can be used on a route handler parameter to retrieve the parsed CloudSchedulerInfo. The CloudSchedulerEventHandlerInterceptor.withOptions static method can be used to create the interceptor, defining whether it isDefault.

Because Cloud Scheduler jobs are often configured to not send a body, the @EventBody parameter can be typed as a plain object. In that case, body parsing and validation are skipped, and an empty object is returned.

Spanner

The SpannerEntityManager is an entity manager having some similarities with TypeORM, but with a much more limited feature set. It handles entity classes decorated using @SpannerTable and @SpannerColumn.

The SpannerModule provides a Database instance configured using the SPANNER_INSTANCE and SPANNER_DATABASE environment variables, and the SpannerEntityManager.

The SpannerHealthIndicator is a HealthIndicator which can be used in a health check controller, such as the GoogleHealthcheckModule. It runs a dummy SELECT 1 query against the database to check connectivity.

For testing, the createDatabase utility creates a temporary database, copying the DDL from the configured database (set with the SPANNER_DATABASE environment variable). The SpannerFixture uses this mechanism, and also clears the specified tables between tests.

GCP-based Causa transaction runners

This package provides the following TransactionRunners:

  • FirestorePubSubTransactionRunner
  • SpannerOutboxTransactionRunner

The FirestorePubSubTransactionRunner uses a Firestore transaction as the underlying state transaction for the FirestorePubSubTransaction. One feature sets the FirestorePubSubTransactionRunner and its FirestoreStateTransaction apart: the handling of deleted entities using a separate, "soft-deleted document collection". Entities with a non-null deletedAt property are moved to a collection suffixed with $deleted, and an _expirationDate field is added to them. A TTL is expected to be set on this field. The @SoftDeletedFirestoreCollection decorator must be added to document classes that are meant to be handled using the FirestorePubSubTransactionRunner.

[!CAUTION]

FirestorePubSubTransactionRunner does not provide atomic guarantees between the state and the events being committed. This could result in events being lost, as they are published once the state transaction successfully committed. Prefer the SpannerOutboxTransactionRunner when applicable.

SpannerOutboxTransactionRunner implements the outbox pattern (from the base runtime's OutboxTransactionRunner), and uses the default injected EventPublisher (which can be the PubSubPublisher, if the corresponding module is imported). It requires an outbox table to be created in each database using the runner. See the documentation of the SpannerOutboxEvent for more information.

Validation

The @IsValidFirestoreId validation decorator checks that a property is a string which is not . or .., and does not contain forward slashes. This ensures the property's value can be used as a Firestore document ID.

More testing utilities

To include all fixtures provided in this package as part of an AppFixture, use the createGoogleFixtures function, which is a convenience method to create the fixtures with sensible defaults. This will also automatically provide a VersionedEntityFixture configured with the SpannerOutboxTransactionRunner.