
Security News
NIST Officially Stops Enriching Most CVEs as Vulnerability Volume Skyrockets
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.
terminal-tasks
Advanced tools
A simple terminal task list powered by Ora.
With Yarn
yarn add terminal-tasks
or with NPM
npm install terminal-tasks
const TaskList = require('terminal-tasks')
const list = new TaskList(['First Task', 'Second Task'])
someTask().then(() => {
// Move to next task
list.next()
})
type: array
Array of tasks. Tasks can be a string (alias for name) or a task object.
{
name: 'text to display next to spinner',
ora: {} // ora options for the spinner (optional)
}
See ora options
type: object (optional)
{
// Character to show in front of pending tasks
// Should be 2 chars long
pendingChar: '- ',
// Character to show in front of messages
// Should have 2 spaces in front and 1 space after (4 chars total)
messageChar: ' > ',
// Hide messages when .next() is called
collapse: false,
// ora options to set for every task
ora: {}
}
Set current task status to succeed and start spinner on next task. Optionally takes a message argument which will show instead of the task name.
Set current task status to info and start spinner on next task. Optionally takes a message argument which will show instead of the task name.
Set current task status to warn and start spinner on next task. Optionally takes a message argument which will show instead of the task name.
Fail the current task and display it's name or the message argument. Will not start the next task.
Add a task to the list. Can be a string or task object.
Run .next() for each remaining task. Optionally takes a message argument which will be logged to console.
Display an indented message below the current task. Will show when .next() is called unless collapse is set to true in options.
FAQs
A simple terminal task list powered by Ora
The npm package terminal-tasks receives a total of 224 weekly downloads. As such, terminal-tasks popularity was classified as not popular.
We found that terminal-tasks 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
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.