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

styling-simplified

v1.0.0

Published

A drop-in, zero-verbosity CSS-in-JS styling package for React.

Readme

aedex-simpleUI (Styling Simplified)

A blazing-fast, zero-verbosity CSS-in-JS styling engine designed to cure Tailwind "class soup" and make React components readable again.

The Problem

Utility-first CSS frameworks like Tailwind are incredibly powerful, but they have a fatal flaw: Verbosity. Reading a component with 15 utility classes strung together makes it incredibly difficult to see the actual structure of your HTML. It pollutes your JSX and makes maintaining complex components a headache.

The Solution

aedex-simpleUI moves the styling logic out of your JSX return statement and into a highly structured, strongly-typed JavaScript object.

Under the hood, it parses these objects, converts them to heavily optimized CSS, and injects them directly into the document <head>. It leverages modern CSS Variables (Custom Properties) to ensure zero React rendering overhead.

Key Features

  • Zero-Clutter JSX: Your components become purely structural (<div {...styles.card}>).
  • 🚀 Blazing Fast: Styles are hashed, cached, and injected instantly.
  • 📱 Object-Based Breakpoints: Write media queries natively as nested objects (md: { layout: 'row' }).
  • 🎨 Zero-Overhead Theming: The <ThemeProvider> uses CSS variables so the browser natively repaints your app on theme change—no React re-renders required.
  • 🎬 First-Class Animations: Generate heavily optimized @keyframes easily with createKeyframes.

Quick Start

npm install aedex-simpleUI
# or your package name, e.g., styling-simplified

1. The Core API

Instead of long strings of classes, you write clean, autocompleted objects:

import { createStyle } from 'aedex-simpleUI';

const styles = createStyle({
  card: {
    // Mobile-first layout shorthands!
    layout: 'col',
    p: 'xl',
    bg: 'gray800',
    rounded: '2xl',
    shadow: 'xl',
    
    // Responsive breakpoints
    md: {
      layout: 'row',
      p: '3xl'
    },
    
    // Pseudo-classes
    hover: { 
      transform: 'translateY(-4px)',
      borderColor: 'primary',
    }
  }
});

function MyCard() {
  return <div {...styles.card}>Hello World</div>;
}

2. Animations

Define an animation once, and re-use its hashed identifier infinitely:

import { createStyle, createKeyframes } from 'aedex-simpleUI';

const pulse = createKeyframes({
  '0%': { transform: 'scale(1)', shadow: 'xl' },
  '50%': { transform: 'scale(1.02)', shadow: '2xl' },
  '100%': { transform: 'scale(1)', shadow: 'xl' }
});

const styles = createStyle({
  button: {
    animation: `${pulse} 3s ease-in-out infinite`,
  }
});

3. Global Theming

Wrap your app in the ThemeProvider to instantly override design tokens globally.

import { ThemeProvider } from 'aedex-simpleUI';

const myTheme = {
  colors: {
    primary: '#ec4899', // Change primary from blue to hot pink!
  }
};

function Root() {
  return (
    <ThemeProvider theme={myTheme}>
      <App />
    </ThemeProvider>
  );
}

🤝 Call for Contributors!

This package was born out of a desire to make UI design in React fun and readable again. We are currently in the MVP stage and actively looking for collaborators and maintainers!

What we are looking to build next:

  • Expanding the built-in design tokens and spacing systems.
  • Adding a createGlobalStyle API for CSS resets.
  • Creating a Vite/Webpack build-time extraction plugin (Zero-Runtime CSS!).
  • Building a comprehensive documentation site.

If you are passionate about UI engineering, Design Systems, or AST/Build-tools, we would love your insights!

How to Contribute

  1. Fork the repository.
  2. Clone it locally and run npm install.
  3. Check out the example/ directory—it's a linked React app you can use as a sandbox (cd example && npm run dev).
  4. Submit a Pull Request with your ideas!

Let's build the cleanest styling engine together.