Socket
Socket
Sign inDemoInstall

cli-output

Package Overview
Dependencies
11
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cli-output

My take on simple output for Node.js command-line apps


Version published
Weekly downloads
1
decreased by-80%
Maintainers
1
Install size
157 kB
Created
Weekly downloads
 

Changelog

Source

1.0.0 - 27/02/2016

Hello World!

Readme

Source

cli-output

My take on simple output for Node.js command-line apps!

node npm Travis Gemnasium Coveralls

ScreenShot

installation:

⇒ npm install cli-output

API:

var out = require("cli-output");

out.debug()

For debugging purposes. Expects same arguments as console.log().

This output is only shown if the environment variable ${DEBUG} is set.

out.error()

For error messages. Expects same arguments as console.error().

out.log()

For normal messages. Expects same arguments as console.log().

Alias: out.info()

out.success()

For success messages. Expects same arguments as console.log().

out.prettyJSON(json)

Outputs json in terminal-friendly manner, without the braces, double quotes, etc.

Alias: out.pjson(json)

out.rawJSON(json)

Outputs json in its normal format but with indentations.

Alias: out.rjson(json)

out.setPS1(ps1)

Sets the marker/PS1 used from " >>> " to ps1.

Also, the marker automatically defaults to the environment variable ${CLI_OUTPUT_PS1}, if it is a non-empty string.

license:

The MIT License (MIT)

Copyright (c) 2015-2016 GochoMugo mugo@forfuture.co.ke

Keywords

FAQs

Last updated on 27 Feb 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc