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 🙏

© 2025 – Pkg Stats / Ryan Hefner

flaming-icons

v1.4.0

Published

Complete icon library with tree-shaking support for Vue and Vuetify

Readme

🔥 Flaming Icons

A clean, simple icon library with tree-shaking support for Vue and Vuetify.

✨ Features

  • Tree-shakable - Only bundle icons you use
  • Font Awesome patterns - Familiar API design
  • Vuetify integration - Works seamlessly with v-icon
  • CSS icons - Optional font-based icons for smallest bundles
  • TypeScript - Full type safety

📦 Installation

npm install flaming-icons

🚀 Quick Start

Vuetify Integration (Tree-shaking)

import { createApp } from 'vue';
import { createVuetify } from 'vuetify';
import { createVuetifyIconSet } from 'flaming-icons';
import { home, search, settings } from 'flaming-icons/icons';

// Create Vuetify with tree-shaking friendly icon set
const vuetify = createVuetify({
  icons: {
    defaultSet: 'flaming',
    sets: { 
      flaming: createVuetifyIconSet([home, search, settings])
    }
  }
});

const app = createApp(App);
app.use(vuetify);

Then use in templates:

<template>
  <v-icon>flaming:home</v-icon>
  <v-icon>flaming:search</v-icon>
  <v-icon>flaming:settings</v-icon>
</template>

CSS Icons (Smallest Bundle)

import { loadAllCSS } from 'flaming-icons/css';

// Load all icon CSS
loadAllCSS();
<!-- Use with CSS classes -->
<i class="flaming-icon-home"></i>
<i class="flaming-icon-search"></i>

📋 Available Icons

  • home - Home/dashboard icon
  • search - Search/magnifying glass icon
  • settings - Settings/gear icon
  • edit - Edit/pencil icon
  • deleteIcon - Delete/trash icon (exported as deleteIcon to avoid reserved word)
  • userProfile - User profile/avatar icon

🛠️ API Reference

Vuetify

import { createVuetifyIconSet } from 'flaming-icons/vuetify';
import { home, search, settings } from 'flaming-icons/icons';

// Pass icons directly to the icon set (tree-shaking friendly)
const iconSet = createVuetifyIconSet([home, search, settings]);

CSS

import { 
  loadAllCSS, 
  loadIconCSS, 
  getIconCSS, 
  getAllCSS 
} from 'flaming-icons/css';

// Load specific icons
loadIconCSS(['home', 'search']);

// Get CSS string
const css = getIconCSS(['home', 'search']);

📁 File Structure

src/
├── icons/           # Icon definitions (tree-shakable)
├── vuetify.ts       # Vuetify integration
├── css.ts           # CSS/font icons
├── types/           # TypeScript definitions
└── index.ts         # Main exports

🎯 Design Principles

  1. Simplicity - Clean, minimal API
  2. Tree-shaking - Only bundle what you use
  3. Modern patterns - Intuitive API design
  4. Framework integration - Easy Vuetify setup
  5. Performance - Optimized for production

📄 License

MIT