0.0.2 • Published 7 months ago

ansicolor-utils v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

ANSIColor-Util

ANSIColor-Util is a color util to get ANSI colors and decode ANSI colors to React Component.

Installation

Installing ANSIColor-Util

npm install ansicolor-util
# or
yarn install ansicolor-util

Usage/Examples

Coloring text.

import { red } from 'ansicolor-util'; // ESM
const { blue } = require('ansicolor-util'); // CommonJS

console.log(red("Hello, ") + blue("World", { bold: true, underline: true }))

Decoding ANSI Colors to React Component text.

import { Ansi } from 'ansicolor-util'; // ESM
const { Ansi } = require('ansicolor-util'); // CommonJS

const App = () => {
  return <>
    <Ansi>
      {`\x1b[31mThis is red text\x1b[0m`}
    </Ansi>
  </>
}

export default App;

Authors

License

GPL-3.0