Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@types/cli-progress
Advanced tools
TypeScript definitions for cli-progress
The @types/cli-progress package provides TypeScript type definitions for the cli-progress package, which is a library for creating customizable progress bars in command line interfaces. These type definitions enable TypeScript developers to use cli-progress in their projects with the benefits of TypeScript's static type checking.
Single Progress Bar
This feature allows you to create and manage a single progress bar. The code sample demonstrates how to initialize, update, and stop a progress bar.
import { SingleBar } from 'cli-progress';
const bar = new SingleBar({});
bar.start(100, 0);
// Update the current value in your application.
bar.update(50);
// Stop the progress bar when done.
bar.stop();
Multi Progress Bar
This feature enables the management of multiple progress bars simultaneously. The code sample shows how to create multiple progress bars and update them independently.
import { MultiBar } from 'cli-progress';
const multi = new MultiBar({});
const bar1 = multi.create(100, 0);
const bar2 = multi.create(200, 0);
// Update the bars independently
bar1.update(50);
bar2.update(150);
// Stop all bars
multi.stop();
Custom Bar Styles
This feature allows for the customization of the progress bar's appearance, including the complete and incomplete characters and the format of the bar. The code sample demonstrates how to customize these aspects.
import { SingleBar } from 'cli-progress';
const bar = new SingleBar({
barCompleteChar: '#',
barIncompleteChar: '.',
format: 'custom |' + '{bar}' + '| {percentage}%'
});
bar.start(100, 0);
bar.update(55);
bar.stop();
The 'progress' package is another popular choice for creating progress bars in Node.js applications. It offers a simple and flexible API but lacks some of the advanced features and customization options provided by cli-progress, such as multiple progress bars management.
Nanobar is a lightweight progress bar library for the web, not directly comparable to cli-progress which is designed for command line interfaces. However, it serves a similar purpose in providing visual progress feedback, with a focus on minimalism and performance.
Ora is a terminal spinner library rather than a progress bar library. It provides a different type of user feedback mechanism, focusing on indicating ongoing activity rather than progress towards completion. It's useful for operations where the total time or steps are unknown.
npm install --save @types/cli-progress
This package contains type definitions for cli-progress (https://github.com/AndiDittrich/Node.CLI-Progress).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cli-progress.
These definitions were written by Mohamed Hegazy, Álvaro Martínez, Piotr Błażejewicz, and Marko Schilde.
FAQs
TypeScript definitions for cli-progress
The npm package @types/cli-progress receives a total of 1,195,922 weekly downloads. As such, @types/cli-progress popularity was classified as popular.
We found that @types/cli-progress demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.