Small terminal progress gauge renderer for JavaScript and TypeScript.
gauge is no longer supported. This package renders deterministic progress bars from plain numbers or progress-state snapshots, with no runtime dependencies.
npm install progress-gaugeimport { renderGauge } from "progress-gauge";
renderGauge({ completed: 0.42, label: "install" });
// "install [########------------] 42%"renderGauge(options)createGauge(options?)Gauge#show(completed, label?)Gauge#hide()
progress-gauge is an independent alternative or migration helper for projects moving away from gauge. It is not affiliated with the original package maintainers or project.
For release context, see the local migration guide, examples, compatibility notes, source metadata, and adoption plan.