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

isomorphic-ansi-escapes

v1.0.1

Published

ANSI escape codes for manipulating the terminal - in-browser version

Downloads

5

Readme

Isomorphic Ansi-Escapes

ANSI escape codes for manipulating the terminal

A fork of sindresorhus/ansi-escapes that remove node dependencies to support in-browser use (exactly, xterm.js).

Installation

# Using pnpm
pnpm add isomorphic-ansi-escapes
# Or yarn
yarn add isomorphic-ansi-escapes

Use with xterm

import ansiEscapes from 'isomorphic-ansi-escapes'
import { Terminal } from 'xterm'
import 'xterm/css/xterm.css'

...
const term = new Terminal({...})
...

// Moves the cursor two rows up and to the left
term.write(ansiEscapes.cursorUp(2) + ansiEscapes.cursorLeft)
//=> '\u001B[2A\u001B[1000D'

...

API

cursorTo(x, y?)

Set the absolute position of the cursor. x0 y0 is the top left of the screen.

cursorMove(x, y?)

Set the position of the cursor relative to its current position.

cursorUp(count)

Move cursor up a specific amount of rows. Default is 1.

cursorUp1

Move cursor up 1 row.

tips: if you'd like to switch user input, this sugar maybe helpful.

cursorDown(count)

Move cursor down a specific amount of rows. Default is 1.

cursorDown1

Move cursor down 1 row.

cursorForward(count)

Move cursor forward a specific amount of columns. Default is 1.

cursorForward1

Move cursor forward 1 col.

cursorBackward(count)

Move cursor backward a specific amount of columns. Default is 1.

cursorBackward1

Move cursor backward 1 col.

cursorLeft

Move cursor to the left side.

cursorSavePosition

Save cursor position.

cursorRestorePosition

Restore saved cursor position.

cursorGetPosition

Get cursor position.

cursorNextLine

Move cursor to the next line.

cursorPrevLine

Move cursor to the previous line.

cursorHide

Hide cursor.

cursorShow

Show cursor.

eraseLines(count)

Erase from the current cursor position up the specified amount of rows.

eraseEndLine

Erase from the current cursor position to the end of the current line.

eraseStartLine

Erase from the current cursor position to the start of the current line.

eraseLine

Erase the entire current line.

eraseDown

Erase the screen from the current line down to the bottom of the screen.

eraseUp

Erase the screen from the current line up to the top of the screen.

eraseScreen

Erase the screen and move the cursor the top left position.

scrollUp

Scroll display up one line.

scrollDown

Scroll display down one line.

clearScreen

Clear the terminal screen. (Viewport)

clearTerminal

Clear the whole terminal, including scrollback buffer. (Not just the visible part of it)

beep

Output a beeping sound.

link(text, url)

Create a clickable link.

Supported terminals. Use supports-hyperlinks to detect link support.