Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
progress-title
Advanced tools
Your usual progress bar, but this time it is displayed within the terminal's title, which is much simpler
Your usual progress bar, but this time it is displayed within the terminal's title, which is much simpler
const Progress = require('progress-title')
// Create the progress session, you can pass configuration into the create method
// see the API Documentation for details
const progress = Progress.create()
// When you are ready to start progress updates
progress.start()
// To write a progress update, you should call these manually
// as otherwise everything will be too quick to see
progress.update('message A')
// => message A
progress.update('message B', { total: 2, done: 1, executing: 1 })
// => message B [50% — 1 running]
progress.update('message C', { total: 10, completed: 5, running: 5 })
// => message C [50% — 5 running]
// To finish the progress updates
progress.stop()
npm install --save progress-title
import * as pkg from ('progress-title')
const pkg = require('progress-title')
This package is published with the following editions:
progress-title
aliases progress-title/index.cjs
which uses the Editions Autoloader to automatically select the correct edition for the consumer's environmentprogress-title/source/index.js
is ESNext source code for Node.js 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modulesprogress-title/edition-node-4/index.js
is ESNext compiled for Node.js 4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modulesThis project provides its type information via inline JSDoc Comments. To make use of this in TypeScript, set your maxNodeModuleJsDepth
compiler option to 5
or thereabouts. You can accomplish this via your tsconfig.json
file like so:
{
"compilerOptions": {
"maxNodeModuleJsDepth": 5
}
}
Discover the release history by heading on over to the HISTORY.md
file.
Discover how to contribute via the CONTRIBUTING.md
file.
Unless stated otherwise all works are:
and licensed under:
FAQs
Your usual progress bar, but this time it is displayed within the terminal's title, which is much simpler
The npm package progress-title receives a total of 47 weekly downloads. As such, progress-title popularity was classified as not popular.
We found that progress-title 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
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.