@nexssp/ansi
15.01.2022 Upgrade - Now works also with import
as module.
const ansi = require("@nexssp/ansi");
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
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");
console.log(ansi.colors);
console.log(ansi.red("My red text"));
const { red, blue, yellowBG, bold } = require("@nexssp/ansi");
console.log(red("my test" + yellowBG(bold("red bold and yellow background"))));