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

@mszr/hail-styl

v1.3.1

Published

A Stylus-powered, versatile design system engine with a focus on safety and DX.

Readme

hail-styl

A versatile design system engine for Stylus. Define robust, theme-agnostic design systems with built-in safety and modularity.

Features

  • 🛡️ Token Validation — Dedicated token utilities to deliver consistency at scale. Style confidently with reliable checks and alerts.

  • 🕹️ Unified Flush Pipeline — Decoupled design logic from CSS emission. Register tokens and rules anywhere, then emit them in a single, clean pass.

  • 🌓 Automatic Light/Dark mode — Use a semantic elevation from 0 to 1 to set colors that automatically adapt their lightness to the current scheme.

  • 💚 DX-First — Clean APIs for easy interpolation, concatenation, and validation. Integrated error tracing makes debugging a breeze.

  • ⚡️ Zero JS Runtime — Pure Stylus magic. No client-side overhead for a fast-by-default experience.


Quick Start

1. Install

npm install -D @mszr/hail-styl

2. Configure

In the design-system.styl auto-imported by your build tool:

@import '@mszr/hail-styl'

dsSetToken('c:brand', rebeccapurple)

3. Flush

In your app.vue or main single-use entry point:

// Emits all CSS variables and rules
dsUseGenerateDeclarationsAtTopLevel()

Documentation

The documentation is split into focused modules to keep things concise and AI-friendly:

  1. Principles — The mental model: Registries, Flushing, and Elevation. [get raw]
  2. Getting Started — Installation, configuration, and the Flush call. [get raw]
  3. Designing — Defining tokens, rules, and the elevation system. [get raw]
  4. Styling — Usage in components: Var(), UseToken(), and UI utilities. [get raw]
  5. Customizing — Global configuration, presets, and core controls. [get raw]
  6. API Reference — A compact, searchable list of every tool in the engine. [get raw]
  7. Conventions — Naming conventions for utils, variables, and tokens. [get raw]
  8. Integrations — Setup guides for Vite/Nuxt and behaviors worth knowing. [get raw]

AI Assistants

Use these templates to help an AI assistant work with your design system:


📺 Demo

Check out the Nuxt Minimal Demo to see hail-styl in action in a real project.