cli-width

WebJar for cli-width

Лицензия

Лицензия

ISC
Категории

Категории

CLI Взаимодействие с пользователем
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

cli-width
Последняя версия

Последняя версия

2.2.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

cli-width
WebJar for cli-width
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

https://github.com/knownasilya/cli-width

Скачать cli-width

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/cli-width/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>cli-width</artifactId>
    <version>2.2.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/cli-width/
implementation 'org.webjars.npm:cli-width:2.2.1'
// https://jarcasting.com/artifacts/org.webjars.npm/cli-width/
implementation ("org.webjars.npm:cli-width:2.2.1")
'org.webjars.npm:cli-width:jar:2.2.1'
<dependency org="org.webjars.npm" name="cli-width" rev="2.2.1">
  <artifact name="cli-width" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='cli-width', version='2.2.1')
)
libraryDependencies += "org.webjars.npm" % "cli-width" % "2.2.1"
[org.webjars.npm/cli-width "2.2.1"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

cli-width

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

npm version Build Status Coverage Status

Tested against NodeJS v10+

Usage

npm install --save cli-width
"use strict";

const 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 width value is going to be 0, that can be changed using the configurable options.

API

cliWidth([options])

cliWidth can be configured using an options parameter, the possible properties are:

  • defaultWidth<number> Defines a default value to be used if none of the methods are available, defaults to 0
  • output<object> A stream to be used to read width values from, defaults to process.stdout
  • tty<object> TTY module to try to read width from as a fallback, defaults to require('tty')

Examples

Defining both a default width value and a stream output to try to read from:

const cliWidth = require("cli-width");
const ttys = require("ttys");

cliWidth({
  defaultWidth: 80,
  output: ttys.output,
});

Defines a different tty module to read width from:

const cliWidth = require("cli-width");
const ttys = require("ttys");

cliWidth({
  tty: ttys,
});

Tests

npm install
npm test

Coverage can be generated with npm run coverage.

Версии библиотеки

Версия
2.2.1
2.2.0
1.1.1