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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@platohq/nestjs-google-pubsub

v0.0.3

Published

Google PubSub integration for NestJS

Downloads

3

Readme

@platohq/nestjs-google-pubsub

The NestJS module based on the official Google PubSub package

How to install

npm install @platohq/nestjs-google-pubsub

or

yarn add @platohq/nestjs-google-pubsub

How to use

You can use this package to integrate Google PubSub with NestJS for both producing or consuming messages.

Producing messages

To add the ability to publish message to a given Google PubSub topic to any module, you need to do the following:

Step 1. Import the ClientsModule

NestJS allows us to abstract the integration with a message broker pretty easily. To do that, you just need to import the ClientsModule to your module, like this:

import { Module } from '@nestjs/common';
import { ClientsModule } from '@nestjs/microservices'; // <-- Import statement
import { GooglePubSubClient } from '@platohq/nestjs-google-pubsub'; // <-- Import statement

@Module({
  imports: [{
    ClientsModule.register([{
      customClass: GooglePubSubClient,
      options: {
        projectId: 'your-project-id',
        // ... other options
        // You can check the list of available options on "Options" section of this document
      }
    }])
  }], // <-- Module metadata
  // ... everything else
})
export class YourModule {}

You can check a list with all available options on the Options section. Also, you can configure the GooglePubSubClient async using a dynamic configuration, like any other NestJS module.

Step 2. Inject the Google PubSub client to your service

With the ClientsModule declared as a depedency, you can inject the GooglePubSubClient to your service, like the following:

import { Inject, Injectable } from '@nestjs/common';
import { ClientProxy } from '@nestjs/microservices'; // <-- ClientProxy interface
import { GooglePubSubClient } from '@platohq/nestjs-google-pubsub'; // <-- Injection token

@Injectable()
export class YourService {
  constructor(
    @Inject(GooglePubSubClient) // <-- Injection decorator
    private readonly client: ClientProxy, // <-- ClientProxy instance
  ) {
  }
  // ... everything else
}

With that in place, you can now use the client property to publish messages to a given topic.

Step 3. Publish new messages

Right now we can only emit events (messages without response) to our topics, so to publish a message to a topic named test-topic, you should do the following:

import { Inject, Injectable } from '@nestjs/common';
import { ClientProxy } from '@nestjs/microservices';
import { GooglePubSubClient } from '@platohq/nestjs-google-pubsub'; // <-- Injection token

@Injectable()
export class YourService {
  constructor(
    @Inject(GooglePubSubClient)
    private readonly client: ClientProxy,
  ) {
  }
  public myCoolFunction(): void {
    this.client.emit('test-topic', "A clever message"); // <-- Emitting a message
  }
  // ... everything else
}

This will publish a message on topic named test-topic containing the following payload:

{
  "data": "A clever message"
}

It is important to notice that everything passed as the second argument for the emit function will be serialized inside a key named data. So, if your payload is an object, that object will be inside a key named data as well.

Consuming messages

Creating a new consumer within this package is pretty straightforward. To do it, follow these steps:

Step 1. Creates a new microservice

In your main.ts (or similar) file, add the following code to create a new NestJS Microservice:

import {NestFactory} from "@nestjs/core";
import {GooglePubSubTransportStrategy} from "@platohq/nestjs-google-pubsub";

const app = await NestFactory.create(AppModule);

app.connectMicroservice({
  strategy: new GooglePubSubTransportStrategy({
    projectId: 'your-project-id',
    appName: 'your-app-name',
  }),
});
await app.startAllMicroservices();

Step 2. Decorate your entrypoint

The first step is using the EventPattern decorator to define the topic you want to listen. Since our current integration with Google Cloud PubSub only enables emitting events (without waiting for responses) you should always use the EventPattern decorator, like the following:

import { Controller } from '@nestjs/common';
import { EventPattern } from '@nestjs/microservices'; // <-- Imports the decorator
import { GooglePubSubContext, SerializedMessage } from '@platohq/nestjs-google-pubsub'; // <-- Imports the context

@Controller()
export class MyController {
  @EventPattern('test-topic') // <-- Attached to the event listener
  public myConsumer(msg: SerializedMessage<unknown>, ctx: GooglePubSubContext): void {
    // ... your logic
  }

  // ... everything else
}

As you can imagine, with that decorator any incoming message on test-topic will be delivered to the myConsumer method. Also, you can pass an optional argument to the SerializedMessage to increase type safety.

Finally, there is an optional second argument ctx which contains all the data provided by Google PubSub regarding that method.

Options

You can use the available options to customize how both your producer and consumer works. You can check the available options below.

| OPTION | REQUIRED | TYPE | DEFAULT | DESCRIPTION | |---------------------------|--------------|----------------|----------------|----------------------------------------------------------------------| | projectId | Yes | null | string | The Google Cloud project ID | | autoCreateTopics | No | boolean | true | Whether to create topics if they don't exist | | autoCreateSubscriptions | No | boolean | true | Whether to create subscriptions if they don't exist | | autoAck | No | boolean | true | Whether to automatically acknowledge messages | | appName | No | string | nestjs | The name of the application | | signatureMarker | No | string | __ | The marker to separate the app name as a prefix on subscriptions | | serializer | No | Serializer | Serializer | The serializer to use to serialize new messages that we're sending | | deserializer | No | Deserializer | Deserializer | The deserializer to use to deserialize messages that we're receiving |

Known limitations

  • We currently only support emitting events (without a response). So, we still need to implement the request/reply.