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

bit-icons

v1.0.0

Published

A dot-grid pixel icon library

Readme

bit-icons

A free, open-source dot-grid icon library. 215+ pixel-perfect icons rendered as square dots on a 7x7 grid.

Think Font Awesome, but with a bit-art aesthetic.

Features

  • 215+ icons — UI, arrows, communication, business, manufacturing, brands, and more
  • Pixel-perfect — Every icon is hand-crafted on a 7x7 dot grid
  • Zero dependencies — Pure SVG, CSS, or JS
  • Customizable — Icons inherit color and scale with font-size
  • Free forever — MIT licensed, free for personal and commercial use

Quick Start

CDN (easiest)

<link rel="stylesheet" href="https://unpkg.com/bit-icons/dist/bit-icons.css">

<span class="bi bi-heart"></span>
<span class="bi bi-search"></span>
<span class="bi bi-settings"></span>

npm

npm install bit-icons
// Import the CSS
import 'bit-icons/dist/bit-icons.css';
<span class="bi bi-heart"></span>

Individual SVGs

<img src="https://unpkg.com/bit-icons/dist/svg/heart.svg" width="24" alt="heart">

JavaScript

import icons from 'bit-icons';

// Access the raw 7x7 grid array
console.log(icons.heart);
// [[0,1,0,0,0,1,0], [1,1,1,0,1,1,1], ...]

Icon Categories

| Category | Examples | |----------|---------| | UI | heart, star, search, settings, bell, trash, edit, lock | | Arrows | arrow-up, arrow-down, chevron-left, chevron-right | | Communication | comment, chat, reply, mail, mention, broadcast | | Business | invoice, contract, briefcase, dollar, target, handshake | | Manufacturing | factory, warehouse, forklift, truck, conveyor, robot | | Status | approved, pending, rejected, in-progress, complete | | Data | chart, pie-chart, bar-chart, spreadsheet, analytics | | People | user, users, team, role, assign, delegate | | Operations | inventory, barcode, scanner, quality, maintenance | | Brands | github, linkedin, slack, figma, youtube, discord | | Navigation | chevrons, external-link, expand, collapse, sidebar | | Media | play, pause, stop, mic, headphones, camera |

Customization

Sizing

Icons scale with font-size:

.bi { font-size: 1.5rem; }   /* default */
.bi-lg { font-size: 2rem; }
.bi-sm { font-size: 0.875rem; }

Coloring

Icons inherit the current text color:

<span class="bi bi-heart" style="color: red;"></span>
<span class="bi bi-star" style="color: gold;"></span>

Cheatsheet

Browse all icons with search, copy-to-clipboard, and SVG download:

Open dist/cheatsheet.html or visit the live cheatsheet after deploying.

Building from Source

# Install (no dependencies needed)
git clone https://github.com/user/bit-icons.git
cd bit-icons

# Build everything
npm run build:all

# Or build individually
npm run build            # SVGs, CSS, JS
npm run build:cheatsheet # Interactive docs

Adding Icons

Each icon is a 7x7 grid in src/icons/index.js:

exports.myicon = [
  [0,0,0,0,0,0,0],
  [0,0,1,1,1,0,0],
  [0,1,0,0,0,1,0],
  [0,1,0,0,0,1,0],
  [0,1,0,0,0,1,0],
  [0,0,1,1,1,0,0],
  [0,0,0,0,0,0,0],
];
  • 1 = filled square, 0 = empty (background dot at 10% opacity)
  • Corner positions [0,0], [0,6], [6,0], [6,6] are excluded from rendering
  • Run npm run build:all after adding

Contributing

Contributions welcome! To add an icon:

  1. Fork the repo
  2. Add your icon grid to src/icons/index.js
  3. Run npm run build:all and check the cheatsheet
  4. Submit a PR

License

MIT — free for personal and commercial use. No attribution required.

See LICENSE for details.