npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ansi-csi-terminal

v1.1.2

Published

ANSI CSI codes for terminals

Downloads

19

Readme

ES6 library for controlling/animating a terminal with ANSI CSI escape codes.

ansi-csi-terminal

ANSI CSI defines escape codes for manipulating terminal screens by moving around, setting colours, erasing lines/screens etc. which are supported on most terminals.

This library also contains some VT220 commands.

For a demo, including a half rainbow, run test/index.js in this repository:

npm run test

Example: Write text, go back and overwrite “rainy“ with a yellow “sunny”.

const csi = require( 'ansi-csi-terminal' );

csi.w( 'It is rainy' )
    .left( 5 )
    .format( csi.color.yellow.bg, csi.color.black )
    .w( 'sunny' );

CSI sequences can be run manually in terminals e.g. with echo -e. The following line prints text with green background colour:

echo -e "\033[42mHello"

Other libraries

Please also check some other libraries with CSI support to see if they better fit your needs:

API

  • w(text) – Write text
  • up(n) – Move cursor up
  • down(n) – Move cursor down
  • right(n) – Move cursor right
  • left(n) – Move cursor left
  • lineDown(n) – Move cursor n lines down and go to beginning of the line
  • lineUp(n) – Dito, but n lines up
  • x(r) – Go to row r (counting starts at 1)
  • xy(r,c) – Go to row r and column c (counting starts at 1)
  • clearToEos() – Clear from cursor to end of screen
  • clearToBos() – Clear from cursor to beginning of screen
  • clearScreen() – Clear content of entire screen
  • clearScreenWithBuffer() – Clear screen and buffer
  • clearToEnd() – Clear from cursor to end of the line (cursor position remains unchanged)
  • clearToHome() – Dito, but clear to beginning of line
  • clearLine() – Clear entire line (cursor position remains unchanged)
  • scrollUp(n) – Scroll n lines up (i.e. text moves up, cursor position stays)
  • scrollDown(n) – Dito, but n lines down
  • saveCursorPos() – Save current cursor position
  • restoreCursorPos() – Return to previously saved cursor position
  • showCursor(show) – Show cursor if show is true (DECTCEM)
  • hideCursor() – Hide cursor (DECTCEM)
  • invertScreen(b) – Invert screen colours if b is true (DECSCNM)
  • format(f1, f2, ...) – Set formattings
  • reset() – Reset terminal (like when entering reset), clears formatting and buffer and stuff. Good for un-breaking broken terminals. (RIS)
  • color – See below
  • height – Get terminal height
  • width – Get terminal width

Colors

Color definitions can be passed to csi.format(...args).

4-bit Colors

The following 4-bit colors are available: black red green yellow blue magenta cyan white

They can be made bright with .bright (on some terminals) and they can be converted to a background color with .bg:

Example:

csi.format( csi.color.red )             # Red font color
csi.format( csi.color.red.bg )          # Red background color
csi.format( csi.color.red.bg.bright )   # Bright red background color

RGB Colors

Less widespread. But fun.

csi.color.rgb( 232, 211, 23 );      // Gives a nice orange
csi.color.rgb( 232, 211, 23 ).bg;   // Same, as background