Socket
Socket
Sign inDemoInstall

@nexssp/ansi

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexssp/ansi

Ansi, terminal colors library


Version published
Weekly downloads
64
decreased by-29.67%
Maintainers
1
Weekly downloads
 
Created
Source

@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

Keywords

FAQs

Package last updated on 15 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc