Socket
Socket
Sign inDemoInstall

status-bar

Package Overview
Dependencies
1
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    status-bar

A status bar for file transfers


Version published
Weekly downloads
651
decreased by-1.81%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

status-bar

A status bar for file transfers

NPM version Dependency Status

NPM installation

Example
var statusBar = require ("status-bar");

var bar = statusBar.create ({
  //Total file size
  total: size,
  //Render function
  render: function (stats){
    //Print the status bar as you like
    process.stdout.write (filename + " " + 
        this.format.storage (stats.currentSize) + " " +
        this.format.speed (stats.speed) + " " +
        this.format.time (stats.remainingTime) + " [" +
        this.format.progressBar (stats.percentage) + "] " +
        this.format.percentage (stats.percentage));
    process.stdout.cursorTo (0);
  }
});

//Update the status bar when you send or receive a chunk of a file
obj.on ("some-event", function (chunk){
  //You can pass any object that contains a length property or a simple number
  bar.update (chunk);
});

//Or simply pipe() things to it!
stream.pipe (bar);

//It will print something like this
//a-file                  17.8 MiB   23.6M/s 00:13 [#·······················]   6%
Why you should try this module
  • It doesn't print anything, it just calculates and returns raw data and provides default formatting functions. Other modules similar to this force you to use their own formatting functions with the readline module, which is very unstable and may cause problems if you are already using a readline instance.
  • The status bar can be displayed wherever you want, it is simply a string, so you can render it in the console, in HTML (probably with your own progress bar) sending it via websockets or with node-webkit, etc.
  • You decide how to format and arrange the elements. The default formatting functions have a fixed length, so you can format the status bar very easily.
  • It is very easy to use. Just pipe() things to it!
Download example
var http = require ("http");
var statusBar = require ("status-bar");

var url = "http://nodejs.org/dist/latest/node.exe";

http.get (url, function (res){
  var bar = statusBar.create ({
    total: res.headers["content-length"],
    render: function (stats){
      process.stdout.write (
          url + " " +
          this.format.storage (stats.currentSize) + " " +
          this.format.speed (stats.speed) + " " +
          this.format.time (stats.remainingTime) + " [" +
          this.format.progressBar (stats.percentage) + "] " +
          this.format.percentage (stats.percentage));
      process.stdout.cursorTo (0);
    }
  });
  
  res.pipe (bar);
}).on ("error", function (error){
  console.error (error);
});

Prints something similar to this:

http://nodejs.org/dist/latest/node.exe    2.7 MiB  502.4K/s 00:07 [############············]  49%
Render function examples
  • pacman from Arch Linux:

    a-file                  17.8 MiB   23.6M/s 00:13 [#·······················]   6%
    
    var statusBar = require ("status-bar");
    
    var formatFilename = function (filename){
      //80 - 59
      var filenameMaxLength = 21;
      if (filename.length > filenameMaxLength){
        filename = filename.slice (0, filenameMaxLength - 3) + "...";
      }else{
        var remaining = filenameMaxLength - filename.length;
        while (remaining--){
          filename += " ";
        }
      }
      return filename;
    };
    
    filename = formatFilename (filename);
    
    var render = function (stats){
      process.stdout.write (filename + " " + 
          this.format.storage (stats.currentSize) + " " +
          this.format.speed (stats.speed) + " " +
          this.format.time (stats.remainingTime) + " [" +
          this.format.progressBar (stats.percentage) + "] " +
          this.format.percentage (stats.percentage));
      process.stdout.cursorTo (0);
    };
    
    var bar = statusBar.create ({
      total: ...,
      render: render
    });
    
  • git clone:

    Receiving objects: 18% (56655992/311833402), 54.0 MiB | 26.7M/s
    
    var statusBar = require ("status-bar");
    
    var render = function (stats){
      process.stdout.write ("Receiving objects: " +
          this.format.percentage (stats.percentage).trim () +
          " (" + stats.currentSize + "/" + stats.totalSize + "), " +
          this.format.storage (stats.currentSize).trim () + " | " +
          this.format.speed (stats.speed).trim ());
      process.stdout.cursorTo (0);
    };
    
    
    var bar = statusBar.create ({
      total: ...,
      render: render
    });
    
Functions
Objects

module.create(options) : StatusBar

Returns a new StatusBar instance.

Options:

  • finish - Function
    Function that is called when the file transfer has finished.

  • frequency - Number
    The rendering frequency in milliseconds. It must be a positive value. Default is 200.

  • progressBarComplete - String
    The character that shows completion progress. Default is #.

  • progressBarIncomplete - String
    The character that shows the remaining progress. Default is ·.

  • progressBarLength - Number
    The length of the progress bar. Default is 24.

  • render - Function
    Function that is called when the status bar needs to be printed. It is required. It receives the stats object as an argument. All of its properties contain raw data, so you need to format them. You can use the default formatting functions.

    Stats:

    • currentSize - Number
      The current size in bytes.
    • remainingSize - Number
      The remaining size in bytes.
    • totalSize - Number
      The total size in bytes.
    • percentage - Number
      The complete percentage. A number between 0 and 1.
    • speed - Number
      The estimated current speed in bytes per second.
    • elapsedTime - Number
      The elapsed time in seconds.
    • remainingTime - Number
      The estimated remaining time in seconds. If the remaining time cannot be estimated because the status bar needs at least 2 chunks or because the transfer it's hung up, it returns undefined.
  • total - Number
    The total size of the file. This option is required.


StatusBar

Methods

Properties


StatusBar#cancel() : undefined

When you need to cancel the rendering of the status bar because the transfer has been aborted due to an error or any other reason, call to this function to clear the timer.


StatusBar#format : Formatter

Returns a Formatter instance.


StatusBar#update(chunk) : undefined

Updates the status bar. The chunk can be any object with a length property or a simple number.


Formatter

Methods


Formatter#percentage(percentage) : String

The percentage must be a number between 0 and 1. Result string length: 4.

console.log (this.format.percentage (0.5));
// 50%

Formatter#progressBar(percentage) : String

The percentage must be a number between 0 and 1. Result string length: the length configured with the option progressBarLength.

console.log (this.format.progressBar (0.06));
//#·······················

Formatter#speed(bytesPerSecond) : String

Speed in bytes per second. Result string length: 9.

console.log (this.format.speed (30098226));
//  30.1M/s

Formatter#storage(bytes) : String

Result string length: 10.

console.log (this.format.storage (38546744));
//  36.8 MiB

Formatter#time(seconds) : String

Result string length: 5 (min:sec). If seconds is undefined it prints --:--.

console.log (this.format.time (63));
//01:03

Keywords

FAQs

Last updated on 02 Jan 2014

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