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

alma-icons

v3.7.0

Published

Icons Set with Multiple Weights & Styles

Readme

AlmaIcons

image

Version

License: CC BY-NC

image

Alma Icons is a production-ready icon system designed for scalable UI products.

The library includes 1228 icons (616 outline, 616 fill) built on a consistent 100–500 weight stroke system with a stable, versioned taxonomy.

Perfect for design systems, product interfaces, and long-term UI development.

  • 1228 icons (616 outline, 616 fill)
  • 2 styles: fill & outline
  • 5 weights: 100 - 500
  • Stable, scalable taxonomy
  • Strict geometric consistency

Demo

🌐 almaicons.netlify.app

Figma Community

Explore the full library in Figma:

👉 https://www.figma.com/community/file/1607825775789504167/alma-icons

Preview

Here are just a few examples (each available in 2 styles × 5 weights):

| Icon name | Fill (300) | Outline (300) | | -------------- | -------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | | rocket | | | | football | | | | bag | | | | folderClosed | | |

👉 Every icon supports weights 100 → 500.

Installation

Using pnpm:

pnpm add alma-icons

Using npm:

npm install alma-icons

Using yarn:

yarn add alma-icons

Usage

Alma Icons supports two integration modes.

Static mode

Static mode is recommended for production UI. Import only the icons your app uses; bundlers can tree-shake the rest, and direct icon components are SSR-friendly.

React:

import { SearchOutline400 } from "alma-icons/react/icons";

export function SearchButton() {
  return <SearchOutline400 />;
}

Direct per-icon React import:

import SearchOutline400 from "alma-icons/react/icons/SearchOutline400";

Vue:

<script setup lang="ts">
import { SearchOutline400 } from "alma-icons/vue/icons";
</script>

<template>
  <SearchOutline400 />
</template>

Direct per-icon Vue import:

import SearchOutline400 from "alma-icons/vue/icons/SearchOutline400";

Dynamic mode

Dynamic mode is for icon browsers, search UIs, plugin UIs, previews, and other places where the icon name is chosen at runtime. It uses a lazy generated manifest and resolves icons by name, style, and weight.

React:

import { AlmaIcon } from "alma-icons/react";

export function Preview() {
  return <AlmaIcon name="search" appearance="outline" weight="400" />;
}

Vue:

<script setup lang="ts">
import { AlmaIcon } from "alma-icons/vue";
</script>

<template>
  <AlmaIcon name="search" appearance="outline" weight="400" />
</template>

The root package also exposes metadata and the backwards-compatible lazy SVG manifest:

import {
  iconManifest,
  iconNames,
  iconStyles,
  iconWeights,
  hasIconVariant,
  resolveIconKey,
  type AlmaIconName,
  type AlmaIconStyle,
  type AlmaIconWeight,
} from "alma-icons";

const key = resolveIconKey({ name: "search", style: "outline", weight: "400" });
const exists = hasIconVariant({
  name: "search",
  style: "outline",
  weight: "400",
});

Package examples use the current package name, alma-icons. If you publish split scoped entry packages, the same generated API maps to @alma-icons/react, @alma-icons/react/icons, @alma-icons/vue, and @alma-icons/vue/icons.

Development

To regenerate icons after adding new SVG files, run from the repository root or packages/alma-icons:

pnpm generate

This updates dist/, index.js, and index.d.ts with metadata, the lazy SVG manifest, and generated React/Vue components.

To validate the generated package surface, run from the repository root or packages/alma-icons:

pnpm validate

License

Alma Icons © 2025–2026 Misha Grebennikov
https://github.com/yamogoo

Licensed under CC BY-NC 4.0 .

  • You must give appropriate credit, provide a link to the license, and indicate if changes were made.

  • You may not use the icons for commercial purposes.