Socket
Socket
Sign inDemoInstall

ts-progress

Package Overview
Dependencies
2
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ts-progress

Flexible node progress bar for Windows/macOS/Linux.


Version published
Weekly downloads
528
increased by5.39%
Maintainers
1
Install size
38.4 kB
Created
Weekly downloads
 

Readme

Source

ts-progress

Build Status Build status Coverage Status Dependencies

Flexible node progress bar for Windows/macOS/Linux

image

Installation

npm install ts-progress

Quickstart

var Progress = require('ts-progress');

var total = 50, count = 0;

var progress = Progress.create({total: total});

var iv = setInterval(function () {
   count++;
   progress.update();
   if (count == total) {
       clearInterval(iv);
   }
}, 150);

API

create(options)

Creates and returns new progress bar.

update()

Updates progress.

done()

Finishes progress regardless of progress stage. Optional.

Options

Progress bar accepts the following options on initialisation:

  • total: number - Total number of items to process.
  • pattern: string - Optional layout pattern, defaults to 'Progress: {bar} | Elapsed: {elapsed} | {percent}'. See Patterns
  • textColor: string - Optional text color. See Colors
  • title: string - Optional title to display above progress bar.
  • updateFrequency: number - Optional update frequency limit in milliseconds. See Update frequency.

// with default options
var progress = Progress.create({total: 50});

// with pattern
var progress = Progress.create({total: 50, pattern: 'Progress: {bar} | Remaining: {remaining} | {percent} '});

//with pattern and text color
var progress = Progress.create({total: 50, pattern: 'Progress: {current}/{total} | Remaining: {remaining} | Elapsed: {elapsed} ', textColor: 'blue'});

//with default options and title
var progress = Progress.create({total: 50, title: 'Waiting for results'});

Update frequency

When set limits progress bar update rate. Used to limit refresh rate for quickly running tasks.

In the example below progress bar will only update every 150 milliseconds instead of updating 1000 times every millisecond. This will reduce resource allocation to progress bar.

var Progress = require('ts-progress');

var total = 1000, count = 0;

var progress = Progress.create({total: total, updateFrequency: 150});

var iv = setInterval(function () {
   count++;
   progress.update();
   if (count == total) {
       clearInterval(iv);
   }
}, 1);

Patterns

The following tokens are supported:

  • {bar} - progress bar.
  • {elapsed} - elapsed time in seconds.
  • {remaining} - estimated remaining time in seconds.
  • {percent} - completion percentage
  • {memory} - process memory usage in megabytes.
  • {current} - current item.
  • {total} - total items.

Token customisation

Tokens can be customised to define color for each token. Progress bar token accepts two colors for remaining/done items as well as length.

Usage for all tokens except progress bar:

  • {token.color}

Usage for progress bar:

  • {bar.color.color.length} - default is {bar.white.green.20}
var progress = Progress.create({total:50, pattern: 'Progress: {bar.white.red.10} | Remaining: {remaining.red} | {percent.blue}'});

Colors

Progress bar uses charm to render elements and supports charm string colors:

  • red
  • yellow
  • green
  • blue
  • cyan
  • magenta
  • black
  • white

Keywords

FAQs

Last updated on 04 Dec 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc