
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
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
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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.