Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

listr-verbose-renderer

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

listr-verbose-renderer

Listr verbose renderer

  • 0.6.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.6M
decreased by-12.68%
Maintainers
1
Weekly downloads
 
Created

What is listr-verbose-renderer?

The listr-verbose-renderer npm package is a renderer for Listr, a Node.js library that helps you create a list of tasks with a beautiful output. The verbose renderer outputs more detailed information for each task, making it suitable for debugging or when more information about the task execution is needed.

What are listr-verbose-renderer's main functionalities?

Verbose Output

This feature allows for detailed output during the execution of tasks. Each task's start, end, and output are logged to the console, providing a clear and verbose description of what is happening.

const Listr = require('listr');
const VerboseRenderer = require('listr-verbose-renderer');

const tasks = new Listr([
  {
    title: 'Task 1',
    task: () => Promise.resolve('Result of task 1')
  },
  {
    title: 'Task 2',
    task: () => Promise.resolve('Result of task 2')
  }
], { renderer: VerboseRenderer });

tasks.run();

Other packages similar to listr-verbose-renderer

Keywords

FAQs

Package last updated on 03 Oct 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc