npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

progress-bar-capture

v1.0.0

Published

Simple progress bar for CLI including a simple capture function that handles console input while progress bar is shown

Downloads

5

Readme

progress-bar-capture

NPM Version NPM Downloads GitHub node-lts Donate

Description

Simple progress bar for CLI including a simple capture function that handles console input while progress bar is shown.

Image

It captures following commands:

console.log();
console.info();
console.warn();
console.error();
console.debug();

Instalation

npm i progress-bar-capture

Basic Usage

The progress-bar-capture module can be loaded using ESM:

import { ProgressBar } from 'progress-bar-capture';

First you need to integrate the progress-bar-capture into your application:

const progressBar = new ProgressBar(options);

Then you can use start to print a progress bar to the terminal:

// Start to print the progress bar on terminal
progressBar.start();

Note: this also starts the capturing of console output

Now you can update the value of the progress bar using update while youre process is been executed:

progressBar.update(25);
// ... do some stuff
progressBar.update(50);
// ... do some stuff
progressBar.update(75);
// ... do some stuff
progressBar.update(100);

When you are finished with your process, you can remove/destroy the progress bar using finish:

progressBar.finish();

Note: this also stops the capturing of console output

Watch the video

Configuring progress-bar-capture

The configuration is optional. Without any manual configuration, progress-bar-capture tries to use reasonable defaults. However, sometimes you may need to change it's configuration.

You can apply a configuration when starting a new instance of progress-bar-capture by providing an object.

const progressBar = new ProgressBar(options);

Options

The object can have following options:

options.isInteractiveSession

Type: boolean Default: true || process.stdout.isTTY

In interactive sessions the progress bar is shown in the terminal, while in non-interactive sessions (ussually not a terminal) it is hidden. By default, progress-bar-capture tries to detect whether a session is interative or not. To explicitly enable or disable interactive sessions, use the isInteractiveSession function

options.maxNumber

Type: number Default: 100

Defines the number that represents 100% in progress of the progress bar.

options.minChangeOfValue

Type: number Default: 1

By default progress-bar-capture tries only to print a new progress value to the terminal when using update if the value has change by more than the value of minChangeOfValue. This improves performance and prevents flickering.

options.percentageFractionDigits

Type: number Default: 1

You can change the number of digits after the decimal point, for the percentage value using percentageFractionDigits

options.prefixText

Type: string Default: ''

You can add an additional prefixed text to the progress bar (e.g. 'Progress') If the string is empty, only the percentage will be displayed.

Chaining functions

If you want to run a number of progress-bar-capture functions as a sequence, you can chain them into a single call.

// Start and set a progress
progressBar.start().update(value);
// Restart with a new progress
progressBar.finish().start().update(value);

License

Copyright (c) 2023-2024 Marina Egner (sheepcs.de). This is free software and may be redistributed under the terms specified in the LICENSE file.