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

hashicons

v1.0.2

Published

Free 16px icon set with SVG files and web fonts (TTF, WOFF, WOFF2, EOT) - Clean, minimal, and ready-to-use icons for web projects.

Downloads

16

Readme

Hashicons

npm version npm downloads license

Free 16px icon set with SVG files and web fonts (TTF, WOFF, WOFF2, EOT) - Clean, minimal, and ready-to-use icons for web projects.

A carefully crafted 16px-based icon set designed for modern web interfaces. Available in multiple formats for maximum flexibility.

Features

  • 16px optimized - Crisp at any scale
  • Multiple formats - SVG, TTF, WOFF, WOFF2, EOT
  • Web fonts - Ready-to-use @font-face CSS
  • SVG sprite - Single file for all icons
  • JSON metadata - Programmatic access
  • Free & open source - MIT licensed
  • Zero dependencies - Pure icon assets

Installation

NPM

npm install hashicons

Yarn

yarn add hashicons

CDN

Use via unpkg or jsdelivr:

<!-- CSS -->
<link rel="stylesheet" href="https://unpkg.com/hashicons/font/hashicons.css">

<!-- Icon usage -->
<i class="hi hi-home"></i>

Usage

Web Fonts

Include the CSS file and use icon classes:

<link rel="stylesheet" href="node_modules/hashicons/font/hashicons.css">

<!-- Basic usage -->
<i class="hi hi-home"></i>
<i class="hi hi-user"></i>
<i class="hi hi-heart"></i>

<!-- With size -->
<i class="hi hi-star" style="font-size: 24px;"></i>

SVG Files

Import individual SVG files:

<img src="node_modules/hashicons/svg/home.svg" alt="Home">

SVG Sprite

Use the sprite for optimal loading:

<svg>
  <use href="node_modules/hashicons/sprite/hashicons.svg#home"></use>
</svg>

JSON Metadata

Access icon data programmatically:

const icons = require('hashicons/json/hashicons.json');

console.log(icons);
// {
//   "name": "hashicons",
//   "icons": {
//     "home": { "unicode": 57600, "hex": "e100" },
//     "user": { "unicode": 57601, "hex": "e101" }
//   }
// }

File Structure

hashicons/
├── font/           # Web fonts (TTF, WOFF, WOFF2, EOT)
│   ├── hashicons.css
│   ├── hashicons.ttf
│   ├── hashicons.woff
│   ├── hashicons.woff2
│   └── hashicons.eot
├── svg/            # Individual SVG files
├── sprite/         # SVG sprite
│   └── hashicons.svg
└── json/           # Icon metadata
    └── hashicons.json

Requirements

  • No runtime dependencies
  • Node.js >= 12.0.0 (for npm installation only)

Changelog

v1.0.2 (2025)

  • 🚀 Updated package description for better SEO
  • 🚀 Enhanced keywords for npm discoverability
  • 📚 Improved README with usage examples and features
  • 🔧 Fixed UTF-8 encoding issues

v1.0.1 (Previous)

  • Initial release

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see the LICENSE file for details.

Author

Orçun Saltık


Made with ❤️ for the web community