
Security News
n8n Tops 2025 JavaScript Rising Stars as Workflow Platforms Gain Momentum
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.
@open-tech-world/cli-progress-bar
Advanced tools
Node.js CLI progress bar.

# With npm
$ npm install @open-tech-world/cli-progress-bar
# With yarn
$ yarn add @open-tech-world/cli-progress-bar
const ProgressBar = require('@open-tech-world/cli-progress-bar');
// or
import ProgressBar from '@open-tech-world/cli-progress-bar';
const progressBar = new ProgressBar();
progressBar.run('Downloading', 0, 100);
progressBar.run('Download completed', 100, 100);
progressBar.stop();
See more examples here
Clone the repo and run it
$ node examples/simple.js
The initializing method of a ProgressBar class.
new ProgressBar();
new ProgressBar({});
new ProgressBar({ width: 40 });
options: object, default {}
30process.stderr'\u2588'Starts or updates the current progress bar instance.
progressBar.run('Running tasks', 23, 150)
progressBar.run('Downloaded', 72, 72)
progressBar.run('Downloading', 3, 10, `ETA: ${speed}`)
'' - used to display progress bar actions on the left side of progress bar0 - current value of a progress bar0 - total value of a progress bar'' - used to show some additional info on the right side of a progress barStops the current progress bar instance with the current state and optionally clears the line.
progressBar.stop()
progressBar.stop(true)
false - used to clear or remove the progress bar after stopsMIT © Thanga Ganapathy
FAQs
Node.js CLI progress bar.
The npm package @open-tech-world/cli-progress-bar receives a total of 2,060 weekly downloads. As such, @open-tech-world/cli-progress-bar popularity was classified as popular.
We found that @open-tech-world/cli-progress-bar demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.