
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
pm2-multimeter
Advanced tools
render multiple progress bars at once on the terminal with eventlimit maxed
Control multiple ANSI progress bars on the terminal.
var multimeter = require('multimeter');
var multi = multimeter(process);
multi.drop(function (bar) {
var iv = setInterval(function () {
var p = bar.percent();
bar.percent(p + 1);
if (p >= 100) clearInterval(iv);
}, 25);
});
var multimeter = require('multimeter');
Create a new multimeter handle on the supplied stream/process objects, which will be passed directly to charm.
If you pass in a charm object that will be used instead of creating a new one.
Create a new progress bar at (x,y)
with params
which default to:
If y
is negative or '-0'
it will be treated as a relative coordinate.
Create a new progress bar at an absolute x
and relative y
coordinate with
respect to the present multi.offset
.
Create a new progress bar at the present cursor location. The bar
object will
be passed to cb(bar)
once the cursor location has been determined.
Call event emitter functions on the underlying charm
object.
This getter/setter controls the positioning for relative progress bars.
Increment this value whenever you write a newline to the stream to prevent the pending progress bars from drifting down from their original positions.
Update the progress bar to p
percent, a value between 0 and 100, inclusive.
The text to the right of the progress bar will be set to msg
.
Update the progress bar with a ratio, n/d
.
The text to the right of the progress bar will be set to msg
.
The charm object used internally to draw the progress bars.
With npm do:
npm install multimeter
FAQs
render multiple progress bars at once on the terminal with eventlimit maxed
The npm package pm2-multimeter receives a total of 1,059,560 weekly downloads. As such, pm2-multimeter popularity was classified as popular.
We found that pm2-multimeter 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.