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

iconforged

v1.3.1

Published

Frontend icon library. Bridging the gap between traditional icons and modern workflows.

Readme

IconForge

npm version License: MIT

Fast, Lightweight, and Customizable Icon Library.
Stop Guessing, Start Forging.

IconForge is a performance-focused, utility-style icon library that lets you load only the icons you need. Powered by a JIT (Just-In-Time) compiler, IconForge tree-shakes unused icons, dynamically injects CSS at runtime, and delivers blazing-fast performance — whether you use it via CDN or IconForge CLI.

Features

  • Just-in-Time (JIT) Compiler: IconForge scans your HTML and generates only the CSS for the icons you are actually using. No more bloated CSS files.
  • Tree-Shaking by Default: Unused icons are automatically removed, resulting in the smallest possible footprint.
  • Utility-First Classes: A rich set of utility classes allows you to customize icon size, color, rotation, and animations directly in your HTML. Fully compatible with both CDN and CLI methods.
  • IDE Integration: The official IconForge IntelliSense extension for VS Code provides autocompletion, icon previews, and CSS snippets right in your editor.
  • CLI or CDN: Use IconForge CLI or drop the CDN link into your project to get started instantly.
  • Huge Library: A massive library of icons for every need, from UI elements to popular brand logos.

Getting Started

There are two ways to get started with IconForge:

Method 1: CDN (Runtime JIT)

For the quickest setup, you can use the CDN link. The JIT compiler will scan your page on the fly and generate the necessary CSS.

Place the following script tag in the <head> section of your HTML file.

<script src="https://cdn.jsdelivr.net/npm/iconforged@latest"></script>

Method 2: IconForge CLI (Build-Time)

For a more robust, production-ready setup, you can install the IconForge CLI.

1. Initialize your project:

Run the init command to initialize the project and create a default iconforge.config.js file in your project root.

npx iconforged init

2. Start the build process:

Use the build command to perform a one-time scan and generate your CSS. Use watch to automatically rebuild as you make changes.

npx iconforged build
npx iconforged watch

This will generate an iconforge-output directory containing your iconforge.css and iconforge.woff2 files.

3. Link the generated stylesheet in your HTML:

Copy the following <link> tag into the <head> of your HTML file. The path should be relative to your HTML file.

<link rel="stylesheet" href="iconforge-output/iconforge.css">

Usage

Using an icon is as simple as adding an <i> or <span> tag with the appropriate class name.

<!-- Basic Icon -->
<i class="if-user"></i>

<!-- Styled Icon -->
<i class="if-heart is-color-red-5 is-size-2xl is-anim-pulse"></i>

Use prefixes like dark: hover: to dynamically change your icon

<!-- Dynamic Icon -->
<i class="if-bulb is-color-white dark:is-color-amber-4 is-size-2xl hover:is-anim-pop"></I>

IconForge support arbitrary value's simply place the value between square brackets [VALUE]

<!-- Arbitrary Icon-->
<button class="is-sq hover:is-clickable">
    <i class="if-iconforge is-color-[#ffad8c] is-size-[64px]"></i>
</button>

Configuration

The iconforge.config.js file allows you to control which files are scanned for icon classes.

module.exports = {
    content: [
      './**/*.{html,js,ts,vue,jsx,tsx}',
    ],
    // Add any classes that are generated dynamically and not found by the parser.
    safelist: [""],
    customCSS: [""],
};

IconForge Intellisense Extension

Supercharge your development workflow with the official IconForge IntelliSense extension for VS Code.

  • Autocomplete: Get suggestions for icon and style classes as you type.
  • Icon Previews: Hover over a icon class to see a smart preview of the icon.
  • CSS Snippets: View the pre generated CSS.

Download Here

Contribution

Can't find an icon you're looking for? Request an icon

Found a bug? Report Here