
Create a Queue/Worker for NestJS application in Cloud Run.
The @anchan828/nest-cloud-run-queue package offers a pragmatic solution for implementing queues in NestJS applications running in Google Cloud Run. Since Cloud Run operates in a serverless manner, traditional queue libraries like @nestjs/bull may not work as expected due to the ephemeral nature of server instances. This package effectively bridges that gap by utilizing Google Cloud Pub/Sub and Cloud Tasks, allowing developers to choose an appropriate method for sending messages and processing tasks without the continuous operation of a server.
By leveraging HTTP requests via Cloud Pub/Sub or Cloud Tasks, developers can create efficient message distribution systems for their NestJS apps while maintaining a cost-effective serverless architecture. Whether you're working on a demo locally or deploying in a production environment, this package simplifies the queueing process within Cloud Run, promoting a seamless workflow.

A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications with TypeScript/JavaScript.
ESLint is a linter for JavaScript that analyzes code to detect and report on potential problems and errors, as well as enforce consistent code style and best practices, helping developers to write cleaner, more maintainable code.
TypeScript is a superset of JavaScript, providing optional static typing, classes, interfaces, and other features that help developers write more maintainable and scalable code. TypeScript's static typing system can catch errors at compile-time, making it easier to build and maintain large applications.