
Security News
GitHub Actions Supply Chain Attack Puts Thousands of Projects at Risk
A compromised GitHub Action exposed secrets in CI/CD logs, putting thousands of projects at risk and forcing developers to urgently secure their workflows.
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,099,026 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.
Security News
A compromised GitHub Action exposed secrets in CI/CD logs, putting thousands of projects at risk and forcing developers to urgently secure their workflows.
Research
Security News
A malicious Maven package typosquatting a popular library is secretly stealing OAuth credentials on the 15th of each month, putting Java developers at risk.
Security News
Socket and Seal Security collaborate to fix a critical npm overrides bug, resolving a three-year security issue in the JavaScript ecosystem's most popular package manager.