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 🙏

© 2024 – Pkg Stats / Ryan Hefner

mistcss

v1.0.2

Published

> Simplicity is the ultimate sophistication

Downloads

438

Readme

MistCSS

Simplicity is the ultimate sophistication

MistCSS lets you create reusable visual components without JavaScript or TypeScript (think about it for a second... no JS/TS needed).

Leverage native HTML and CSS, get type safety and autocomplete. Just clean and efficient styling.

What you see above is standard HTML (data-attributes) and CSS (nested CSS). MistCSS simply creates a d.ts file based on your CSS.

Features

  • 🥶 Below zero-runtime, it's zero JavaScript. Smaller bundles and faster code.
  • 💎 What you write is what you get. No transformations, easy debugging.
  • 🎒 Standards-based, reusable styles across frameworks, compatible with Tailwind or any CSS framework
  • ⚡️ Instantly productive, no learning curve, simple onboarding.
  • 💖 Back to basics with a modern twist: access the full power of HTML and CSS, enhanced with type safety and code completion (without the complexity).

Usage

Traditional approaches require wrapping your markup/styles in JavaScript functions (Button.tsx<button/>, Input.tsx<input/>, ...), defining props with TypeScript types, and writing logic to manage class names.

With MistCSS, styling is straightforward and minimal. Here’s how it looks:

mist.css

button {
  border-radius: 1rem;
  padding: 1rem;
  background: lightgray;

  &[data-variant='primary'] {
    background-color: black;
    color: white;
  }

  &[data-variant='secondary'] {
    background-color: grey;
    color: white;
  }
}

Page.tsx

<>
  <button data-variant="primary">Save</button>
  <button data-variant="tertiary">Save</button> {/* TS error, tertiary isn't valid */}
</>

Output

<button data-variant="primary">Save</button> {/* Same as in Page.tsx */} 

This example demonstrates enums, but MistCSS also supports boolean and string props. For more details, see the FAQ.

How does it work?

MistCSS parses your mist.css file and generates mist.d.ts for type safety.

For instance, here’s the generated mist.d.ts for our button component:

interface Mist_button extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
  'data-variant'?: 'primary' | 'secondary'
}

declare namespace JSX {
  interface IntrinsicElements {
    button: Mist_button // ← <button/> is extended at JSX level to allow 'primary' and 'secondary' values
  }
}

That’s it! Simple yet powerful, built entirely on browser standards and TypeScript/JSX.

Install

npm install mistcss --save-dev

postcss.config.js

module.exports = {
  plugins: {
    mistcss: {},
  },
}

layout.tsx

import './mist.css'

FAQ

Can I use CSS frameworks like Tailwind or Open Props?

Absolutely, MistCSS is pure HTML and CSS, generating only mist.d.ts, so there are no limitations. You can integrate any CSS framework seamlessly. Here are a few examples to get you started:

[!IMPORTANT] For the best experience, set up Tailwind IntelliSense in your editor. Refer to Tailwind's editor setup guide.

Tailwind v3 (@apply)

button {
  @apply bg-blue-500 text-white;
  /* ... */
}

Tailwind v3 (theme)

button {
  background: theme(colors.blue.500);
  /* ... */
}

Tailwind v4

Tailwind v4 will support CSS variables natively (see blog post).

Tailwind (inline style)

To override some styles, you can use className

<button data-variant="primary" className="p-12">
  Save
</button>

Open Props

button {
  background-color: var(--blue-6);
  /* ... */
}

Can I do X without JavaScript?

CSS is more powerful than ever, before reaching for JS, explore if native CSS features can accomplish what you need.

Can I write <name> instead of data-<name>?

No, using <name> would result in invalid HTML. However, this constraint is actually advantageous.

Firstly, it eliminates the risk of conflicts with native attributes:

<>
  <Button type="primary">Save</Button {/* Conflict with button's type="submit" */}
  <button data-type="primary">Save</button> {/* Safe */}
</>

Additionally, just by typing data- in your editor, autocomplete helps you clearly distinguish your custom attributes from standard tag attributes.

How to write enum, boolean, string props and conditions?

div[data-component='section']
  /* CSS variables */
  --color: ...;

  /* Default styles */
  background: var(--color, green);
  margin: ...;
  padding: ...;

  /* Enum props */
  &[data-size="sm"] { ... }
  &[data-size="lg"] { ... }

  /* Boolean props */
  &[data-is-active] { ... }  

  /* Condition: size="lg" && is-active */
  &[data-size="lg"]&[data-is-active] { ... }

  /* Condition: size="lg" && !is-active */
  &[data-size="lg"]:not([data-is-active]) { ... }
}
<div
  data-component="section"
  data-size="foo"
  data-is-active
  style={{ '--color': 'red' }}
/>

How to re-use the same tag?

If you want both basic links and button-styled links, here’s how you can do:

a:not([data-component]) { /* ... */ }

a[data-component='button'] { /* ... */ }
  &[data-variant='primary'] { /* ... */ }
}
<>
  <a href="/home">Home</a>
  <a href="/home" data-component="button">Home</a>
  <a href="/home" data-component="button" data-variant="primary">Home</a>
  <a href="/home" data-variant="primary">Home</a> {/* TS error, `data-variant` is only valid with `data-component="button"` */}
</>

[!NOTE] data-component is just a naming convention. Feel free to use any attribute, like data-kind='button' or just data-c. It’s simply a way to differentiate between components using the same tag.

How to split my code?

You can use CSS @import. For example, in your mist.css file:

@import './button.css'

How to build complex components?

mist.css

article[data-component='card'] { /* ... */ }
div[data-component='card-title'] { /* ... */ }
div[data-component='card-content'] { /* ... */ }

Card.jsx

export function Card({ title, children }) {
  return (
    <article data-component="card">
      <div data-component="card-title">{title}</div>
      <div data-component="card-content">{children}</div>
    </article>
  )
}

[!TIP] To indicate that these styles aren't meant to be used outside of Card, you can name them data-p-component (p for private) or use another naming convention.

How to define CSS variables?

:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
}

button {
  background: var(--primary-color)
  /* ... */

See also your CSS framework/tooling documentation for ways to define them in JS if you prefer.

How to Use MistCSS with an External UI?

Assuming you have your UI components in a separate package my-ui and you're using Next.js, follow these steps:

app/layout.tsx

import 'my-ui/mist.css'

app/mist.d.ts

import 'my-ui/mist.d.ts

This setup ensures that your Next.js application correctly imports styles and type definitions from your external UI package. It may vary based on tools you're using, but the same principles should apply.

Origin of the project name?

Mist is inspired by atomized water 💧 often seen near waterfalls. A nod to the Cascading in CSS 🌊.