6.1.6 • Published 3 years ago

ansi-to-react v6.1.6

Weekly downloads
18,506
License
BSD-3-Clause
Repository
github
Last release
3 years ago

ansi-to-react

This package convert ANSI escape codes to formatted text output for React.

Installation

$ yarn add ansi-to-react
$ npm install --save ansi-to-react

Usage

Basic

The example below shows how we can use this package to render a string with ANSI escape codes.

import Ansi from "ansi-to-react";

export function () => {
  return <Ansi>
    {'\u001b[34mhello world'}
  </Ansi>;
};

Will render:

<code>
  <span style="color:rgb(0, 0, 187)">hello world</span>
</code>

Classes

Style with classes instead of style attribute.

<Ansi useClasses>{"\u001b[34mhello world"}</Ansi>

Will render

<code>
  <span class="ansi-blue-fg">hello world</span>
</code>

Class Names

Font colorBackground Color
ansi-black-fgansi-black-bg
ansi-red-fgansi-red-bg
ansi-green-fgansi-green-bg
ansi-yellow-fgansi-yellow-bg
ansi-blue-fgansi-blue-bg
ansi-magenta-fgansi-magenta-bg
ansi-cyan-fgansi-cyan-bg
ansi-white-fgansi-white-bg
ansi-bright-black-fg
ansi-bright-red-fg
ansi-bright-green-fg
ansi-bright-yellow-fg
ansi-bright-blue-fg
ansi-bright-magenta-fg
ansi-bright-cyan-fg
ansi-bright-white-fg

Development

To develop on this project, fork and clone this repository on your local machine. Before making modifications, install the project's dependencies.

$ npm install

To run the test suite for this project, run:

$ npm test

Documentation

We're working on adding more documentation for this component. Stay tuned by watching this repository!

Support

If you experience an issue while using this package or have a feature request, please file an issue on the issue board,

License

BSD-3-Clause

6.1.6

3 years ago

6.1.5

3 years ago

6.1.4

3 years ago

6.1.3

3 years ago

6.1.2

3 years ago

6.1.1

3 years ago

6.1.0

3 years ago

6.0.10

3 years ago

6.0.8

4 years ago

6.0.7

4 years ago

6.0.6

4 years ago

6.0.5

4 years ago

6.0.5-alpha.0

4 years ago

6.0.4-alpha.0

4 years ago

6.0.3

4 years ago

6.0.3-alpha.0

4 years ago

6.0.2-alpha.0

4 years ago

6.0.1-alpha.0

4 years ago

6.0.0

4 years ago

5.1.4-alpha.0

4 years ago

5.1.3-alpha.0

4 years ago

5.1.2-alpha.0

4 years ago

5.1.1

4 years ago

5.1.1-alpha.0

4 years ago

5.1.0

5 years ago

5.0.0

5 years ago

4.0.4

5 years ago

4.0.4-alpha.0

5 years ago

4.0.3-alpha.0

5 years ago

4.0.2-alpha.0

5 years ago

4.0.0-alpha.0

6 years ago

3.3.5

6 years ago

3.3.4

6 years ago

3.3.3

6 years ago

3.3.2

6 years ago

3.3.1

6 years ago

3.3.0

6 years ago

3.2.1

6 years ago

3.2.0

6 years ago

3.1.0

6 years ago

3.0.0

6 years ago

2.0.6

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

7 years ago

1.6.1

7 years ago

1.6.0

7 years ago

1.5.2

7 years ago

1.5.1

7 years ago

1.5.0

7 years ago

1.4.2

7 years ago

1.4.1

7 years ago

1.4.0

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.0.6

7 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.1

8 years ago

0.0.0

8 years ago