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

@simbo/cli-output

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@simbo/cli-output

A collection of utilities for common CLI messages and output.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

CLI Output

📦 @simbo/cli-output

A collection utilities for common CLI messages and output.

Installation

Install @simbo/cli-output from the npm registry:

npm i [-D] @simbo/cli-output

Usage

For a complete API reference, see the documentation.

Examples

import {
  failure,
  hintToHelp,
  line,
  success,
  terminated,
} from '@simbo/cli-output';

// Success message with a green "✔":
console.log(success(`Done.`));

// Failure message with a red "✖":
console.log(failure(`Failed.`));

// Termination message with cause:
console.log(terminated(`Received SIGINT`));

// Hint to use "<COMMAND> --help":
console.log(hintToHelp());

// Draw a line:
console.log(line());

License

MIT © Simon Lepel

Keywords

cli

FAQs

Package last updated on 01 Sep 2025

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