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

corbit-mono

v1.0.0

Published

Corbit Mono - A futuristic open-source monospace developer font

Readme

Corbit Mono

A futuristic, stroke-based open-source monospace font crafted for developers.

ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
0123456789 !@#$%^&*(){}[]|

Features

  • Stroke-based geometry — every glyph built from clean SVG path data
  • True monospace — fixed 600-unit advance width for perfect code alignment
  • 99 glyphs — uppercase, lowercase, numbers, symbols, and programming ligatures
  • Fully reproducible — build pipeline written entirely in Node.js using opentype.js
  • Open Source — SIL Open Font License 1.1

Preview

Open index.html in your browser for the interactive specimen page with a live text editor and full character map.

Installation

Download dist/CorbitMono.ttf and install it as a system font, or reference it directly from your CSS:

@font-face {
  font-family: 'Corbit Mono';
  src: url('CorbitMono.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Corbit Mono', monospace;
}

Building from Source

Requirements: Node.js 16+

# Install dependencies
npm install

# Generate SVG preview glyphs → glyphs/
npm run generate

# Build the TTF font → dist/CorbitMono.ttf
npm run build

# Both steps in sequence
npm run all

What the build does

  1. scripts/generate-glyphs.js — reads path definitions and writes individual SVG files into glyphs/uppercase/, glyphs/lowercase/, glyphs/numbers/, glyphs/symbols/, and glyphs/ligatures/.
  2. scripts/build-font.js — converts each stroke path to filled outline contours using a custom strokeToOutline() function and assembles a TTF binary via opentype.js.

Font Design

Corbit Mono uses a consistent 1000×1000 SVG coordinate space:

  • Baseline at y = 800
  • Cap height at y = 150
  • Descenders extend to y = 980
  • All strokes have a width of 50 units (±25 from center)

The stroke-to-outline algorithm approximates round line caps with cubic Bézier curves (κ ≈ 0.5523) and converts quadratic Bézier segments into polyline approximations at 12 steps for accuracy.

License

Corbit Mono is released under the SIL Open Font License 1.1.

Copyright 2024 Corbit Technologies