wrap-ansi

WebJar for wrap-ansi

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

wrap-ansi
Last Version

Last Version

7.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

wrap-ansi
WebJar for wrap-ansi
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/chalk/wrap-ansi

Download wrap-ansi

How to add to project

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

Dependencies

compile (3)

Group / Artifact Type Version
org.webjars.npm : ansi-styles jar [4.0.0,5)
org.webjars.npm : string-width jar [4.1.0,5)
org.webjars.npm : strip-ansi jar [6.0.0,7)

Project Modules

There are no modules declared in this project.

wrap-ansi Build Status Coverage Status

Wordwrap a string with ANSI escape codes

Install

$ npm install wrap-ansi

Usage

const chalk = require('chalk');
const wrapAnsi = require('wrap-ansi');

const input = 'The quick brown ' + chalk.red('fox jumped over ') +
	'the lazy ' + chalk.green('dog and then ran away with the unicorn.');

console.log(wrapAnsi(input, 20));

API

wrapAnsi(string, columns, options?)

Wrap words to the specified column width.

string

Type: string

String with ANSI escape codes. Like one styled by chalk. Newline characters will be normalized to \n.

columns

Type: number

Number of columns to wrap the text to.

options

Type: object

hard

Type: boolean
Default: false

By default the wrap is soft, meaning long words may extend past the column width. Setting this to true will make it hard wrap at the column width.

wordWrap

Type: boolean
Default: true

By default, an attempt is made to split words at spaces, ensuring that they don't extend past the configured columns. If wordWrap is false, each column will instead be completely filled splitting words as necessary.

trim

Type: boolean
Default: true

Whitespace on all lines is removed by default. Set this option to false if you don't want to trim.

Related

  • slice-ansi - Slice a string with ANSI escape codes
  • cli-truncate - Truncate a string to a specific width in the terminal
  • chalk - Terminal string styling done right
  • jsesc - Generate ASCII-only output from Unicode strings. Useful for creating test fixtures.

Maintainers


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.
org.webjars.npm

chalk

Terminal string styling done right

Versions

Version
7.0.0
6.2.0
5.1.0
4.0.0
3.0.1
2.1.0
2.0.0
1.0.0