New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

terminal-tasks

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

terminal-tasks

A simple terminal task list powered by Ora

latest
Source
npmnpm
Version
0.0.5
Version published
Maintainers
1
Created
Source

Terminal Tasks CircleCI

A simple terminal task list powered by Ora.



Install

With Yarn

yarn add terminal-tasks

or with NPM

npm install terminal-tasks

Usage

const TaskList = require('terminal-tasks')

const list = new TaskList(['First Task', 'Second Task'])

someTask().then(() => {
  // Move to next task
  list.next()
})

API

new TaskList(tasks, options)

tasks

type: array

Array of tasks. Tasks can be a string (alias for name) or a task object.

task object

{
  name: 'text to display next to spinner',
  ora: {} // ora options for the spinner (optional)
}

See ora options

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: {}
}

Instance

.next(message)

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.

.info(message)

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.

.warn(message)

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(message)

Fail the current task and display it's name or the message argument. Will not start the next task.

.add(task)

Add a task to the list. Can be a string or task object.

.complete(message)

Run .next() for each remaining task. Optionally takes a message argument which will be logged to console.

.message(message)

Display an indented message below the current task. Will show when .next() is called unless collapse is set to true in options.

FAQs

Package last updated on 14 Jul 2019

Did you know?

Socket

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