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

node-cli-loader

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-cli-loader

Plugin to create animated loaders in the terminal

latest
Source
npmnpm
Version
1.2.3
Version published
Maintainers
1
Created
Source

Node CLI Loader

Plugin to create animated loaders in the terminal programmatically.

Install

npm install node-cli-loader

Usage

Creates a new loader:

// Default loader (Loading...)
Loader.create()

// Custom loader (Start loading...)
Loader.create('Start loading', { 
  spinname: 'dots',
  doneMessage: 'Loading finished!'
})

Arguments:

nameDESCRIPTIONVALUE TYPEEXAMPLEDEFAULT
descriptionMessage to show when loading and renderingstringRequesting dataLoading
optionsCustom options for the loaderobjectLoaderOptions{}

Options (LoaderOptions):

nameDESCRIPTIONVALUE TYPEEXAMPLEDEFAULT
spinnameName of the spinner to be displayedstring'dots', 'sand''dots'
doneMessageMessage to change the loader when finishesstring'Loading finish!'
timeoutThe time in milliseconds to wait before stopping the loaderstring1000

See all the spinners.

Stop the loader and mark it as done.

const loader = Loader.create()
// Some logic here...
loader.finish()

Stop the loaders and mark them as failures:

Loader.interrupt()

Stops all loaders in course:

Loader.stopAll()

Based on packages:

Keywords

cli

FAQs

Package last updated on 24 Jul 2024

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