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

@pbvision/cloud-run-service

v0.0.48

Published

fastify-firestore-service Web Framework on Cloud Run

Readme

Cloud Run Service library

Setup

  1. yarn setup
  2. Install recommended vscode extensions
    • Open the Extensions tab in vscode
    • In the filter box, type "@recommended" and press enter to search
    • Make sure all recommended extensions are installed

Requirements

  • Must run with a service account named cr-${process.env.SERVICE}@${process.env.GCLOUD_PROJECT}.iam.gserviceaccount.com with at least these permissions (along with whatever else your service requires):

    • roles/run.invoker - if the service needs to call other services
    • cloudtasks.tasks.create - if the service needs to enqueue tasks
      • roles/iam.serviceAccountUser - if the tasks need to be able to invoke an internal cloud run service (i.e., one which restricts invokers to specific service accounts, to include this service's account)
  • Environment variables:

    • Required:
      • GCLOUD_PROJECT - the project ID this service is running in; must end in -dev or -prod
      • GIT_HASH - the commit from which the current code was generated
      • K_REVISION - provided by cloud run (the revision ID)
        • When running a local server, it will be localhost
        • When running it unit tests, it should beunittest
          • If this is unittest then isUnitTesting will be true.
      • NODE_ENV
        • If this is localhost then isLocalhost will be true. This is always the case when running locally, even if we're connecting to real cloud resources (like Firestore or Task Queue).
          • isCloud is the opposite of isLocalhost.
        • If this is dev then isDev will be true.
        • If this is prod then isProd will be true.
      • REGION - the region this service's cloud run is located in
      • SERVICE - the name of this service
    • Optional:
      • Emulation (must provide all or none of these) for GCP services:
        • CLOUD_TASKS_EMULATOR_PORT
        • FIRESTORE_EMULATOR_HOST
      • CLOUD_RUN_HOSTNAME_SUFFIX - the hostname of our cloud run instances in this region, excluding the SERVICE name portion at the beginning. Only required if using the callServiceAPI() function.
      • COOKIE_SECRET - used to sign cookie data (cookies are disabled if omitted)
      • PORT - defaults to 8080 if omitted
      • SENTRY_DSN - the Sentry URL to report errors to (not used on localhost)