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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kung-fu/terminal

v0.1.0

Published

terminal — the x51.dev terminal / CRT aesthetic as a CSS framework (JetBrains Mono type, phosphor glow, scanlines, shell-style components)

Readme

terminal

The x51.dev terminal / CRT aesthetic, packaged as a single CSS framework. It's the exact theme that dresses every page of x51.dev — JetBrains Mono on an olive ground, a faint phosphor text-glow, CRT scanlines, inverse-video links, and a kit of shell-style listing components.

Live style guide: https://x51.dev/terminal/

Installation

Via NPM

npm install @kung-fu/terminal
<link rel="stylesheet" href="path/to/terminal.css">

Via CDN

<link rel="stylesheet" href="https://unpkg.com/@kung-fu/terminal/dist/terminal.min.css">

Usage

terminal.css themes <body> wholesale — link it and the whole page takes on the aesthetic. No build step, no JS.

Fonts

The type is JetBrains Mono (SIL OFL-1.1), a free, open-licensed monospace face.

terminal.css references it via an @font-face whose src points at site-absolute /fonts/jetbrains-mono-*.woff2 URLs. The package itself ships only CSS — no font data — so on your own site, provide JetBrains Mono however you like:

  • self-host the woff2 at /fonts/ (the OFL permits redistribution; keep the OFL.txt with it), or
  • pull it from a package such as @fontsource/jetbrains-mono, or
  • override the @font-face to point at your own copy.

Without it, the stack falls back to the platform monospace and the layout still holds — so the framework works with zero font setup; you just won't get the exact JetBrains Mono shapes.

What's in it

A terminal palette plus a set of shell-flavoured components:

| Class | Renders as | |---|---| | .prompt / .cmd | a shell prompt line (PS1 recedes, the command pops) | | ul.ls | an ls -l directory listing (mode · name · description) | | ul.ps + .ps-header | a ps aux process table | | ul.systemctl + .systemctl-header | a systemctl list-units table | | ul.bbs / ul.mutt / ul.fm | BBS board · mutt mailbox · FM tuner listings | | main.doc | man-page layout (section headings, indented body) | | .cursor | a blinking block cursor | | table.outline, pre, pre code.shell | dashed tables, code blocks, $-prefixed shell |

The body also gets the CRT scanline overlay and phosphor glow automatically.

The x51 labs wordmark and brand SVGs are x51.dev-specific branding and are deliberately not part of this package — only the reusable terminal.css framework is published.

Palette

| Token | Hex | Role | |---|---|---| | Ground | #464F41 | background | | Ink | #EFF7D3 | text / headings | | Dim | #BAC7A7 | secondary text | | Faint | #889E81 | metadata / rules | | Inactive | #5C6952 | disabled state |

Source of truth

This package is a thin publish wrapper. The CSS is authored and previewed in the x51.dev guide at x51.dev/sites/terminal/css/terminal.css; prepublishOnly harvests it into dist/ (plus a minified build) at publish time.

License

GPL-3.0-only — see LICENSE file for details.