You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readme.md 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. # wrap-ansi [![Build Status](https://travis-ci.org/chalk/wrap-ansi.svg?branch=master)](https://travis-ci.org/chalk/wrap-ansi) [![Coverage Status](https://coveralls.io/repos/github/chalk/wrap-ansi/badge.svg?branch=master)](https://coveralls.io/github/chalk/wrap-ansi?branch=master)
  2. > Wordwrap a string with [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles)
  3. ## Install
  4. ```
  5. $ npm install --save wrap-ansi
  6. ```
  7. ## Usage
  8. ```js
  9. const chalk = require('chalk');
  10. const wrapAnsi = require('wrap-ansi');
  11. const input = 'The quick brown ' + chalk.red('fox jumped over ') +
  12. 'the lazy ' + chalk.green('dog and then ran away with the unicorn.');
  13. console.log(wrapAnsi(input, 20));
  14. ```
  15. <img width="331" src="screenshot.png">
  16. ## API
  17. ### wrapAnsi(input, columns, [options])
  18. Wrap words to the specified column width.
  19. #### input
  20. Type: `string`
  21. String with ANSI escape codes. Like one styled by [`chalk`](https://github.com/chalk/chalk).
  22. #### columns
  23. Type: `number`
  24. Number of columns to wrap the text to.
  25. #### options
  26. ##### hard
  27. Type: `boolean`<br>
  28. Default: `false`
  29. 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.
  30. ##### wordWrap
  31. Type: `boolean`<br>
  32. Default: `true`
  33. 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.
  34. ## Related
  35. - [slice-ansi](https://github.com/chalk/slice-ansi) - Slice a string with ANSI escape codes
  36. - [cli-truncate](https://github.com/sindresorhus/cli-truncate) - Truncate a string to a specific width in the terminal
  37. - [chalk](https://github.com/chalk/chalk) - Terminal string styling done right
  38. - [jsesc](https://github.com/mathiasbynens/jsesc) - Generate ASCII-only output from Unicode strings. Useful for creating test fixtures.
  39. ## License
  40. MIT © [Sindre Sorhus](https://sindresorhus.com)