Socket
Socket
Sign inDemoInstall

cli-width

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cli-width

Get stdout window width, with two fallbacks, tty and then a default.


Version published
Weekly downloads
24M
decreased by-1.55%
Maintainers
1
Install size
43.6 kB
Created
Weekly downloads
 

Package description

What is cli-width?

The cli-width package is a simple utility that allows you to retrieve the current width of the command line interface (CLI) in which your node.js application is running. It is useful for creating CLI tools that need to format output according to the width of the terminal window.

What are cli-width's main functionalities?

Get CLI width

This feature allows you to get the current width of the CLI. The function returns a number representing the number of columns in the terminal, or a default value if it can't be determined.

const cliWidth = require('cli-width');
console.log(cliWidth());

Set default width

This feature allows you to set a default width that cli-width will return if it cannot determine the actual width of the terminal. This is useful for ensuring your application has a fallback width to use for formatting output.

const cliWidth = require('cli-width');
cliWidth.defaultWidth = 100;
console.log(cliWidth());

Other packages similar to cli-width

Readme

Source

cli-width

Get stdout window width, with three fallbacks, tty, a custom environment variable and then a default.

npm version Build Status Coverage Status

Usage

npm install --save cli-width
'use stict';

var cliWidth = require('cli-width');

cliWidth(); // maybe 204 :)

You can also set the CLI_WIDTH environment variable.

If none of the methods are supported, and the environment variable isn't set, the default is 0 and can be changed via cliWidth.defaultWidth = 200;.

Tests

npm install
npm test

Coverage can be generated with npm run coverage.

FAQs

Last updated on 26 Jan 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