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

@rease/css

v0.4.1

Published

css in js

Readme

@rease/css

css in js

Features:

  • Nesting (uses the symbol &, like less and scss). After conversion, a standard valid code is created.
  • All the rules are correctly combined during the conversion. Kinds of rules:
    • @media;
    • @scope;
    • @supports;
    • @container;
    • etc.
  • Scoped classes. All classes that start with the _ character will receive an additional salt.
  • The browser automatically adds prefixes (webkit, moz, ms) if necessary.
  • Support for block comments.

Usage

import { css } from '@rease/css'

const COLOR = 'red'

const style = css`
  .block {
    display: block;

    &__element {
      color: ${COLOR};

      @media (min-width: 900px) {
        color: green;

        @supports (display: flex) {
          display: flex;
        }

        @media (max-width: 1900px) {
          color: lime;
        }
      }
    }

    /* 
      Block comment.
    
      Symbol '&' needed for nesting.
    */
    .outer_class > & > span {
      /* 
        A '-webkit-' or '-khtml-' or '-moz-' or '-ms-'
        will be added to this property.
      */
      user-drag: none;
    }

    /*
      This is a scoped class, since it starts with the symbol '_'.
    */
    ._scoped_class {
      position: relative;
    }
  }
`

console.log(style)

As a result, we get such an object:

style ===
  {
    /*
      This function removes the style element from the DOM.

      !!! Important !!!
      All styles are cached, based strictly on the input data.

      If the same styles were created several times,
      then there will be only one style element in DOM.

      And it will be deleted only when the 'destroy' function
      is called for all its creators.
    */
    destroy: () => {},

    // Will become true after calling the 'destroy' function
    destroyed: false,

    // ID for for style element and salt for scoped classes
    id: 'glgh6w852pc',

    // scoped class
    _scoped_class: 'glgh6w852pc_scoped_class',

    // final css
    css: '.block{display:block;}.block__element{color:red;}@media...',
  }

Formatted CSS example of what happened:

.block {
  display: block;
}
.block__element {
  color: red;
}
@media (min-width: 900px) {
  .block__element {
    color: green;
  }
  @supports (display: flex) {
    .block__element {
      display: flex;
    }
  }
}
@media (min-width: 900px) and (max-width: 1900px) {
  .block__element {
    color: lime;
  }
}
.outer_class > .block > span {
  user-drag: none;
  -webkit-user-drag: none;
}
.block .glgh6w852pc_scoped_class {
  position: relative;
}