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

@meteor-icons/hamlet

v4.5.0

Published

Meteor is an open-source icon set with ultra-lightweight, performance-focused code, crafted through human reasoning.

Readme

cover

About

A Hamlet plugin that exposes Meteor Icons partials for inline SVG output and Blogger includes.

Features

  • Registers the Meteor namespace
  • Provides svg, include, and includable partials
  • Reuses the same generated icon map as the rest of the project
  • Keeps Blogger and SVG output aligned with the core package

Installation

npm install @meteor-icons/hamlet

Usage

Add the plugin to your hamlet.config.js configuration file:

import Meteor from '@meteor-icons/hamlet'

export default {
  plugins: [
    Meteor()
  ]
}

Partials

| Partial | Description | | --- | --- | | Meteor.svg | SVG partial for inline icon markup | | Meteor.include | Blogger <b:include> helper partial | | Meteor.includable | Blogger includable XML partial |

Parameters

| Parameter | Description | | --- | --- | | icon | Icon name | | class | Additional classes | | color | Stroke color | | size | Width and height | | strokeWidth | Stroke thickness | | minimal | Renders only essential SVG attributes (class and viewBox) |

Minimal mode

Use the minimal prop to keep only essential attributes in the generated SVG root (class and viewBox).

{{> Meteor.svg icon="github" minimal=true}}

If you use minimal mode, you should add the following CSS to your styles for proper icon rendering:

.i {
  stroke-width: var(--i-stroke, 2);
  width: var(--i-size, 24px);
  height: var(--i-size, 24px);
  stroke: var(--i-color, currentColor);
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

Options

| Option | Description | | --- | --- | | minimalSvgAttrs | Generates SVGs with only the essential attributes (class, viewBox) |

Example

You can use the partials in your Hamlet templates like this:

{{> Meteor.includable}}

{{> Meteor.include icon="github"}}

{{> Meteor.svg icon="github"}}

Please note that if you use the Meteor.include partial, you must include the Meteor.includable partial in your template within Blogger's default common markup, for example:

<b:defaultmarkups>
  <b:defaultmarkup type='common'>
    {{> Meteor.includable}}
  </b:defaultmarkup>
</b:defaultmarkups>

If, instead, you are using the Meteor.svg partial, you do not need to include anything else. You can use it directly in your template. If you want to use the minimalSvgAttrs option, you can enable it in your configuration like this:

import Meteor from '@meteor-icons/hamlet'

export default {
  plugins: [
    Meteor({ minimalSvgAttrs: true })
  ]
}

Contributing

All icons are created by Daniel Abel, but contributions are welcome.

Guidelines

  • Ensure visual consistency across icons
  • Keep SVG code clean and optimized
  • Provide clear references when requesting new icons
  • Contributions must be original work

Support

For more information, see CONTRIBUTING.md. You can also support the project by buying a coffee.

License

Meteor Icons is licensed under the MIT License.