@nexssp/ansi

1.1.5 • Public • Published

@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

Readme

Keywords

Package Sidebar

Install

npm i @nexssp/ansi

Homepage

nexss.com

Weekly Downloads

77

Version

1.1.5

License

MIT

Unpacked Size

5.87 kB

Total Files

5

Last publish

Collaborators

  • nexss