1. terminal-tasks
A simple terminal task list powered by Ora
terminal-tasks
Package: terminal-tasks
Created by: nklayman
Last modified: Thu, 19 May 2022 21:08:21 GMT
Version: 0.0.5
License: MIT
Downloads: 131
Repository: https://github.com/nklayman/terminal-tasks

Install

npm install terminal-tasks
yarn add terminal-tasks

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.

Dependencies

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin