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

@invisi/ficons

v1.0.0

Published

Ficons icon font package with local explorer and webfonts.

Downloads

155

Readme

@invisi/ficons

A local web-compatible icon font package with thousands of icons across multiple style variations.

Features

  • Thousands of icons across 15 style variations (stroke weights × corner styles)
  • Self-hosted - no CDN dependencies
  • Interactive explorer - browse, search, and filter icons locally
  • Web fonts - WOFF2, WOFF, TTF formats
  • Easy integration - drop-in CSS with class-based icons

Installation

npm i @invisi/ficons

Quick Start

Include the CSS in your HTML:

<link rel="stylesheet" href="fonts/ficons.css">

Use icons with <span> or <i> elements:

<i class="fi fi-rs-user"></i>
<span class="fi fi-brs-home"></span>
<i class="fi fi-brands-instagram"></i>

Icon Styles

| Weight | Corner | Prefix | Example | |:-----------|:---------|:-------|:-------------------------------| | Regular | Straight | fi-rs | <i class="fi fi-rs-user"></i> | | Regular | Rounded | fi-rr | <i class="fi fi-rr-user"></i> | | Bold | Straight | fi-bs | <i class="fi fi-bs-user"></i> | | Bold | Rounded | fi-br | <i class="fi fi-br-user"></i> | | Solid | Straight | fi-ss | <i class="fi fi-ss-user"></i> | | Solid | Rounded | fi-sr | <i class="fi fi-sr-user"></i> | | Thin | Straight | fi-ts | <i class="fi fi-ts-user"></i> | | Thin | Rounded | fi-tr | <i class="fi fi-tr-user"></i> | | Brands | - | fi-brands | <i class="fi fi-brands-facebook"></i> |

Icon Count

| Variant | Icons | |-------------------|--------| | Regular Straight | 5,043 | | Regular Rounded | 5,039 | | Bold Straight | 5,055 | | Bold Rounded | 5,041 | | Solid Straight | 5,044 | | Solid Rounded | 5,051 | | Thin Straight | 5,053 | | Thin Rounded | 5,032 | | Regular Chubby | 3,093 | | Solid Chubby | 3,093 | | Thin Chubby | 3,093 | | Duotone Straight | 180 | | Duotone Rounded | 160 | | Duotone Chubby | 270 | | Brands | 245 |

Thousands of icon variations

Styling

Icons inherit font-size and color from their parent:

<!-- Size -->
<i class="fi fi-rs-heart" style="font-size: 24px;"></i>
<i class="fi fi-rs-heart" style="font-size: 48px;"></i>

<!-- Color -->
<i class="fi fi-rs-star" style="color: #f1c40f;"></i>
<i class="fi fi-rs-heart" style="color: #e74c3c;"></i>

Package Structure

fonts/
  ficons.css           # Unified CSS (imports all styles)
  css/
    flaticon-regular-straight.css
    flaticon-regular-rounded.css
    flaticon-bold-straight.css
    ...
  webfonts/             # Font files (woff2, woff, ttf)
data/
  all_icons.js          # Icon data for explorer
explorer.html           # Interactive icon browser

CLI Search

Search for icons directly from the command line using npx:

# Basic search
npx @invisi/ficons search camera

# Search with multiple keywords
npx @invisi/ficons search arrow left

# Filter by variation (prefix)
npx @invisi/ficons search user rr
npx @invisi/ficons search home --variation ss

Outputs JSON with icon names and available variations:

{
  "camera": ["rs", "rr", "bs", "br", "ss", "sr", "ts", "tr"],
  "camera-phone": ["rs", "rr", "bs", "br"]
}

Variation Prefixes

| Prefix | Style | |:-------|:------| | rs | Regular Straight | | rr | Regular Rounded | | rc | Regular Chubby | | bs | Bold Straight | | br | Bold Rounded | | bc | Bold Chubby | | ss | Solid Straight | | sr | Solid Rounded | | sc | Solid Chubby | | ts | Thin Straight | | tr | Thin Rounded | | tc | Thin Chubby | | ds | Duotone Straight | | dr | Duotone Rounded | | dc | Duotone Chubby | | brands | Brand Logos |

Icon Explorer

Open explorer.html in a browser to:

  • Browse all icons
  • Search by name or tags
  • Filter by weight, corner style, and type
  • Copy HTML snippets and CSS classes
  • Adjust icon preview size

Development Scripts

# Fetch latest icon metadata
npm run update:icons
# or: node update-icon-list.js

# Convert JSON to browser-ready JS
npm run build:icons
# or: node build-icons-js.js

# Generate webfonts from SVGs using FontForge
npm run build:fonts
# or: node build-fonts.js