
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
@open-tech-world/cli-progress-bar
Advanced tools
Node.js CLI progress bar.
Simple demo of dark theme terminal

Simple demo of light theme terminal

# 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 {}
number, default 30stream, default process.stderrstring, default '\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}`)
string, default '' - used to display progress bar actions on the left side of progress barnumber, default 0 - current value of a progress barnumber, default 0 - total value of a progress barstring, default '' - 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)
boolean, default 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,082 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.