sisteransi
Advanced tools
Weekly downloads
Readme
Ansi escape codes faster than you can say "Bam bam".
npm install sisteransi
const ansi = require('sisteransi');
// or const { cursor } = require('sisteransi');
const p = str => process.stdout.write(str);
// move cursor to 2, 1
p(ansi.cursor.to(2, 1));
// to up, one down
p(ansi.cursor.up(2)+ansi.cursor.down(1));
Set the absolute position of the cursor. x0
y0
is the top left of the screen.
Set the position of the cursor relative to its current position.
Move cursor up a specific amount of rows. Default is 1
.
Move cursor down a specific amount of rows. Default is 1
.
Move cursor forward a specific amount of rows. Default is 1
.
Move cursor backward a specific amount of rows. Default is 1
.
Move cursor to the next line a specific amount of lines. Default is 1
.
Move cursor to the previous a specific amount of lines. Default is 1
.
Move cursor to the left side.
Hide cursor.
Show cursor.
Save cursor position.
Restore cursor position.
Scroll display up a specific amount of lines. Default to 1
.
Scroll display down a specific amount of lines. Default to 1
.
Erase the screen and move the cursor the top left position.
Erase the screen from the current line up to the top of the screen. Default to 1
.
Erase the screen from the current line down to the bottom of the screen. Default to 1
.
Erase the entire current line.
Erase from the current cursor position to the end of the current line.
Erase from the current cursor position to the start of the current line.
Erase from the current cursor position up the specified amount of rows.
This is a fork of ansi-escapes.
MIT © Terkel Gjervig
FAQs
ANSI escape codes for some terminal swag
The npm package sisteransi receives a total of 15,084,969 weekly downloads. As such, sisteransi popularity was classified as popular.
We found that sisteransi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a GitHub app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.