prom-client

The de facto Prometheus client library for instrumenting Node.js applications with counters, gauges, histograms, and summaries.

Library
npm
v15.1.3
3,487stars
Apache License 2.0

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
88/100Excellent
Development Activity96
Maintenance84
Community72
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
75/100Good
Architecture80
Code Quality88
Innovation78
Learning Curve55

prom-client is a Node.js library for exposing application metrics in the Prometheus exposition format. It implements the four core Prometheus metric types — Counter, Gauge, Histogram, and Summary — along with a Registry that collects and serializes them into the text format Prometheus scrapes over HTTP. It does not bundle a web framework of its own; instead, applications wire register.metrics() into whatever HTTP server or framework they already use to expose a /metrics endpoint.

Beyond custom metrics, the library ships collectDefaultMetrics() for automatic collection of Node.js and process-level signals recommended by Prometheus itself — event loop lag, active handles, garbage collection duration, heap and memory usage, process CPU time, open file descriptors, and Node.js version. For multi-process deployments it provides cluster and worker-thread aggregation registries that merge metrics across workers with configurable aggregation strategies (sum, min, max, average, first, or omit), plus a Pushgateway client for batch/cron-style jobs that can’t be scraped directly.

The project began life as prom-client and has since been adopted as the official Node.js client under the Prometheus GitHub organization (now published as @prometheus-io/client, with prom-client preserved as the long-standing, widely-depended-upon package name most of the ecosystem still installs). It supports both the legacy Prometheus text exposition format and the newer OpenMetrics format, including OpenMetrics exemplars tied to OpenTelemetry trace and span IDs.

What You Get

  • Counter, Gauge, Histogram, and Summary metric types with full label support, including strongly-typed labels via TypeScript’s as const
  • collectDefaultMetrics() for automatic Node.js/process metrics: event loop lag and utilization, GC duration, heap and memory stats, CPU time, file descriptors, and version info
  • Multi-registry support so different parts of an application (or different metric sets) can be scraped independently, plus a Registry.merge() to combine them on one endpoint
  • Cluster and worker-thread aggregation registries with per-metric aggregator strategies (sum, min, max, average, first, omit) for accurate metrics across multiple Node.js processes
  • Pushgateway client for pushing metrics from short-lived or batch jobs that Prometheus can’t scrape directly
  • Dual exposition format support — classic Prometheus text format and OpenMetrics, including OpenMetrics exemplars linked to OpenTelemetry trace/span IDs

Common Use Cases

  • Exposing a /metrics endpoint from an Express, Fastify, or plain http.Server-based Node.js API for Prometheus to scrape
  • Tracking HTTP request duration and count with labeled Histograms to power latency/error-rate dashboards and SLO alerts
  • Monitoring Node.js runtime health (event loop lag, GC pauses, memory growth) to catch performance regressions before they page someone
  • Aggregating metrics across a Node.js cluster or worker-thread pool so a single scrape reflects the whole process group, not just one worker
  • Pushing job-completion metrics from cron jobs or one-off scripts via the Pushgateway client, since those processes exit before Prometheus can scrape them

Under The Hood

Architecture The library centers on a Registry (lib/registry.js) that metrics register themselves into at construction time, and an abstract Metric base class (lib/metric.js) that Counter, Gauge, Histogram, and Summary each extend — validating names and label names up front and throwing on misconfiguration rather than failing silently later. ClusterRegistry and WorkerRegistry (lib/cluster.js, lib/worker.js) extend this model across process boundaries, using IPC to collect and merge metric snapshots from workers according to a per-metric aggregator strategy defined in lib/metricAggregators.js. Pushgateway (lib/pushgateway.js) is a separate, self-contained concern layered on top of the same Registry abstraction rather than woven into it, and shared low-level exposition-format and escaping logic lives in lib/util.js. The design favors flat, single-responsibility modules over deep class hierarchies or a plugin system, which keeps the failure surface small and each file’s job easy to state in one sentence.

Tech Stack The implementation is plain JavaScript with hand-written TypeScript declarations (index.d.ts, ~900 lines) rather than a compiled TypeScript source — tsc is used only to type-check the codebase, not to build it. Runtime dependencies are deliberately minimal: @opentelemetry/api (only exercised when OpenMetrics exemplars are enabled) and tdigest (for the sliding-window quantile estimation behind Summary metrics). Tooling is modern and actively maintained: ESLint 10 with typescript-eslint, eslint-plugin-n, and eslint-plugin-jsdoc, Prettier for formatting, Husky plus lint-staged for pre-commit enforcement, and GitHub Actions workflows for CI, changelog generation, and release automation. The package targets current Node.js LTS lines only, reflecting its role as low-level, performance-sensitive infrastructure rather than a broadly polyfilled utility library.

Code Quality Every core module in lib/ has a corresponding test file under test/ (counterTest.js, gaugeTest.js, histogramTest.js, summaryTest.js, registerTest.js, clusterTest.js, workerTest.js, pushgatewayTest.js, validationTest.js, utilTest.js, aggregatorsTest.js, timeWindowQuantilesTest.js, plus a dedicated typescript.ts file that exercises the type definitions themselves), run via Jest with coverage collection wired into the test script. Constructors validate their inputs eagerly — missing help text, missing names, invalid metric or label names, and invalid content types all throw immediately rather than producing malformed output downstream. Naming is consistent and domain-accurate throughout (Registry, Metric, Grouper, aggregators), and the codebase is fully linted and Prettier-formatted with pre-commit enforcement, giving high confidence in consistency across contributors.

What Makes It Unique Most metrics client libraries stop at exposing counters and gauges from a single process. prom-client’s cluster/worker aggregation layer — where each metric declares its own aggregation strategy (sum, min, max, average, first, or omit) and a primary process merges snapshots from all workers over IPC — solves a problem that’s genuinely awkward to get right in Node.js’s multi-process model, and is unusual to see handled this thoroughly in a client library rather than left to the operator. Layered on top of that is dual-format support for both the legacy Prometheus text format and the OpenMetrics standard, including exemplars that attach OpenTelemetry trace and span IDs directly to counter and histogram observations — connecting metrics to distributed traces at the data-model level rather than through a separate correlation step.

Used by 31 apps in this directory

TypeScript
49%
MPL 2.0

Artillery

Devops · Developer Tools

9,071

Cloud-scale load testing and functional testing for APIs, WebSockets, gRPC, and headless browsers, distributed across AWS Lambda or Fargate with zero infrastructure to manage.

View details
88
Repo Health
73
Technical
68
Dependency
Built with
TypeScript49%
JavaScript48%
Updated 1 weeks ago
TypeScript
100%
MIT

Botpress

AI Assistants · AI Development · Customer Support

14,893

The open-source hub for building and deploying LLM-powered AI agents with TypeScript-first tooling, 40+ integrations, and a revolutionary code-execution agent framework.

View details
94
Repo Health
82
Technical
64
Dependency
Built with
TypeScript100%
Updated 3 days ago
TypeScript
81%
Other

Directus

CMS · Low Code Platforms

37,783

Connect any SQL database and get instant REST and GraphQL APIs, a visual management Studio, and a native MCP server for AI agents — free for most organizations.

View details
92
Repo Health
82
Technical
76
Dependency
Built with
TypeScript81%
Vue18%
Updated 3 days ago
TypeScript
72%
AGPL 3.0

Firecrawl

AI Development · Developer Tools

177,290

Turn any website into clean, LLM-ready data with a single API call — no proxy headaches, no scraping complexity.

View details
89
Repo Health
83
Technical
65
Dependency
Built with
TypeScript72%
Python14%
Updated yesterday
TypeScript
62%
Other

Flowise

Developer Tools · Automation · No Code Platforms

55,427

Drag-and-drop visual builder for AI agents, RAG pipelines, and multi-agent systems—deploy anywhere in minutes.

View details
86
Repo Health
77
Technical
63
Dependency
Built with
TypeScript62%
JavaScript27%
Updated 3 weeks ago
TypeScript
49%
AGPL 3.0

Grafana

Monitoring · Analytics

76,643

The open-source observability platform that unifies metrics, logs, and traces from any data source into dynamic, queryable dashboards.

View details
95
Repo Health
91
Technical
63
Dependency
Built with
TypeScript49%
Go45%
Updated today
TypeScript
83%
Apache 2.0

Grist

Databases · No Code Platforms

11,726

A modern relational spreadsheet that combines Python-powered formulas, drag-and-drop dashboards, and granular access controls in a self-hostable, SQLite-backed data platform.

View details
91
Repo Health
93
Technical
66
Dependency
Built with
TypeScript83%
Python11%
Updated yesterday
Go
84%
MIT

Hatchet

AI Development · Developer Tools · Automation

7,885

A Postgres-backed orchestration engine for background tasks, AI agents, and durable workflows that replaces Redis queues and multi-datastore durable execution platforms with a single self-hostable service.

View details
87
Repo Health
83
Technical
67
Dependency
Built with
Go84%
PLpgSQL11%
Updated 2 days ago
TypeScript
99%
MIT

GraphQL Hive

Developer Tools · Devops · Monitoring

484

Open-source GraphQL schema registry and observability platform with breaking change detection, federation support, and CI/CD integration for teams of any size.

View details
89
Repo Health
81
Technical
69
Dependency
Built with
TypeScript99%
Updated 2 days ago

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search