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

atomattr

v0.1.1

Published

A zero-setup, attribute-driven CSS engine.

Readme

AtomAttr is a zero-config, runtime CSS engine. It scans your HTML for utility attributes and compiles optimized CSS instantly in the browser.

No Build Step: Forget Webpack, PostCSS, and config files.

No Context Switching: Style directly in your markup.

Tiny Footprint: The engine is lightweight (<10kb) and fast.

🚀 Quick Start

Method 1: CDN (Zero Setup)

Add these two lines to your . Perfect for prototyping, static sites, and legacy apps.

Method 2: NPM

npm install atomattr

⚡ Usage

AtomAttr uses Attributes instead of classes. The syntax is [modifier]-[property]="[value]".

<!-- Typography & Colors -->
<h1 size="2rem" weight="800" text="primary">Hello World</h1>

<!-- Responsiveness (md-, lg-) -->
<div w="full" md-w="50%" bg="surface-alt" p="4" radius="md">
    Responsive Card
</div>

<!-- States (hover-, focus-) -->
<button bg="primary" text="white" px="6" py="2" radius="lg" 
        hover-bg="accent" hover-scale="105" transition="all">
    Hover Me
</button>

🎨 Customization

AtomAttr is built on CSS Variables. To customize your theme, simply override the variables in your own stylesheet. No JavaScript configuration is required.

:root { /* Brand Colors */ --primary: #6366f1; --surface: #ffffff;

/* Custom Spacing */
--s-4: 1rem; /* used by p="4" */

}

📦 Features

Runtime Engine: Observes the DOM and generates CSS on the fly.

Attribute Syntax: Cleaner markup (p="4" vs class="p-4").

Responsive: Mobile-first breakpoint support (sm-, md-, lg-, xl-).

Stateful: Built-in interaction modifiers (hover-, focus-, active-, group-hover-).

Dark Mode: Native support via html.dark class and dark- attributes.

Transforms: Automatic composition for scale, rotate, and translate.

📄 License

MIT © Quanta Labs