@vangware/ansi

📟 Functional CLI ANSI formatter

Usage no npm install needed!

<script type="module">
  import vangwareAnsi from 'https://cdn.skypack.dev/@vangware/ansi';
</script>

README

Vangware's ANSI logo

Build Status Coverage License NPM Version Open Issues

📟 Functional CLI ANSI formatter.

Usage

This package can be installed as a dependency or used directly.

Usage as ECMAScript module

🦕 In JS or deno:

import { foregroundRed } from "https://cdn.skypack.dev/@vangware/ansi";

foregroundRed`Hello world!`;

🌎 Or in the browser:

<script type="module">
    import { foregroundRed } from "https://cdn.skypack.dev/@vangware/ansi";

    foregroundRed`Hello world!`;
</script>

Usage with local installation

First:

npm i @vangware/ansi

And then:

import { whiteText, redBackground, bold, mix } from "@vangware/ansi";

// You can just use the styles
console.log(redBackground`Red background text`);

// Or you can mix them!
const warningText = mix([whiteText, redBackground, bold]);

console.log(warningText`Warning!`);

Documentation

Documentation can be found HERE. It is auto-generated with typedoc based on the JSDocs and the types in the source. Shouldn't be necessary to read this, code editors like VSCode integrate the documentation in the UI.

Changelog

Changelog can be found HERE.

Test coverage

Test coverage can be found HERE.