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

termio

v2.1.0

Published

Perfectly convert ANSI escape codes into HTML.

Downloads

26

Readme

Termio

Perfectly convert ANSI escape codes to HTML.

Example Screenshot

Installation

npm install -g termio

Terminal Usage

ls --color=always | termio > ls.html

Capture data from TMUX

tmux capture-pane -eJ
tmux save-buffer tmux.output
termio < tmux.output > tmux.html

JS API Usage

const Termio = require('termio')

process.stdin
  .pipe(termio())
  .pipe(process.stdout)

HTML Notes

  • Everything is a <span>
  • There are no inline style attributes. All styles must be applied with CSS. E.g. <span class="foreground-1">

Supported SGR Codes

| Code | Class | Effect | ---- | --------------- | ------ | 0 | | reset all styles | 1 | bold | use bold font and bright colors | 2 | | N/A | 3 | italic | use italic font | 4 | underline | underline text | 5 | | N/A | 6 | | N/A | 7 | reverse | switch background and foreground colors | 8 | conceal | display nothing | 9 | strike | line through text | ... | | | 21 | | remove bold | 22 | | remove bold | 23 | | remove italic | 24 | | remove underline | 25 | | N/A | 26 | | N/A | 27 | | remove reverse | 28 | | remove conceal | 29 | | remove strike | 30 | foreground-0 | set foreground to 0 | 31 | foreground-1 | set foreground to 1 | 32 | foreground-2 | set foreground to 2 | 33 | foreground-3 | set foreground to 3 | 34 | foreground-4 | set foreground to 4 | 35 | foreground-5 | set foreground to 5 | 36 | foreground-6 | set foreground to 6 | 37 | foreground-7 | set foreground to 7 | 38 | foreground-n | set foreground to n | 39 | foreground-fg | set foreground to fg | 40 | background-0 | set background to 0 | 41 | background-1 | set background to 1 | 42 | background-2 | set background to 2 | 43 | background-3 | set background to 3 | 44 | background-4 | set background to 4 | 45 | background-5 | set background to 5 | 46 | background-6 | set background to 6 | 47 | background-7 | set background to 7 | 48 | background-n | set background to n | 49 | background-bg | set background to bg | ... | | | 90 | foreground-8 | set foreground to 8 | 91 | foreground-9 | set foreground to 9 | 92 | foreground-10 | set foreground to 10 | 93 | foreground-11 | set foreground to 11 | 94 | foreground-12 | set foreground to 12 | 95 | foreground-13 | set foreground to 13 | 96 | foreground-14 | set foreground to 14 | 97 | foreground-15 | set foreground to 15 | ... | | | 100 | background-8 | set background to 8 | 101 | background-9 | set background to 9 | 102 | background-10 | set background to 10 | 103 | background-11 | set background to 11 | 104 | background-12 | set background to 12 | 105 | background-13 | set background to 13 | 106 | background-14 | set background to 14 | 107 | background-15 | set background to 15