@nexssp/ansi

Ansi, terminal colors library

Usage no npm install needed!

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

README

@nexssp/ansi

15.01.2022 Upgrade - Now works also with import as module.

const ansi = require("@nexssp/ansi");
// or
import ansi from "@nexssp/ansi";

New cursor functions

  • now you can do up, left, right, down with the number of lines/columns.. eg. ansi.up(5)

Available colors and functions

image

reset, bold, italic, underscore, strikethrough, inverse, gray, grayBG purple, purpleBG, red, redBG redBG2, green, greenBG, greenBG2 blue, blueBG, blueBG2, yellow, yellowBG, yellowBG2, magenta, magentaBG, magentaBG2, cyan, cyanBG, orangeBG, white, whiteBG, black, blackBG

Other functions

  • up, down, right, left: moves cursor,
  • saveCursor: save cursor position,
  • restoreCursor: restore last savd position,
  • clearScreen: clear screen,

Examples

const ansi = require("@nexssp/ansi"); // OR import ansi from "@nexssp/ansi";
// colors list
console.log(ansi.colors);
console.log(ansi.red("My red text"));

// or
const { red, blue, yellowBG, bold } = require("@nexssp/ansi");
console.log(red("my test" + yellowBG(bold("red bold and yellow background"))));

image