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

habu

v1.1.0

Published

Concise inline styles with theme and mixin support, powered by aphrodite.

Readme

habu-logo

Habu

Concise inline styles with theme and mixin support, powered by aphrodite.

Habu is a utility that gives you the ability to write concise inline styles.

  • Only dependency (peer-dep) is aphrodite
  • Habu supports all front-end frameworks supported by aphrodite
  • Total size, including aphrodite, is about 9kb gzipped
  • Supports themes, mixins, media queries, pseudo-selectors, and css abbreviations
npm install --save aphrodite habu

Example (React)

// import habu from the file where you have configured it
import css from 'style/habu-configured';

function MyComponent(props) {
  const itemStyle = css('d:b', '>900px(d:ib; w:50%)', ':hover(bg:@accentColor)');

  return (
    <ul className={css('p:0', 'm:0', 'lineHeight:1.5')}>
      {props.items.map((item, i) => (
        <li key={i} className={itemStyle}>{item}</li>  
      ))}
    </ul>
  );
}

Explanation

The imported css function has been configured. During configuration, you can pass a theme, mixins, and abbreviations. When calling the css function, the format of the strings are analyzed to determine if it's a mediaQuery, mixin, pseudo-selector, or css rule. That string is then translated into an aphrodite stylesheet item.

  • 'm:0' -> { margin: 0 }
  • 'p:0' -> { padding: 0 }
  • 'd:b' -> { display: block }
  • 'd:ib' -> { display: inline-block }
  • '>900px(d:ib, w:50%)' -> '@media(min-width: 900px)' { display: 'inline-block', width: '50%' }

Css arguments

The arguments to the css function can be strings, arrays, and falsey values. Falsey values are removed and nested arrays of any depth are flattened.

const lineItemStyle = css(
  'p:0',
  isSelected ? [':hover(c:#464747)', 'bg:#46a2d5'] : [':hover(c:#f0f0f2)', 'bg:#72c251'],
  isSelected && 'b:1px solid #d9611e'
);

Configuration

cssProps and cssVals (css prop and value abbreviations) are imported from habu. You have to option of extending these objects if you want to add more abbreviations or overwrite any of them. Any breaking change to the abbreviations should only be possible during a major version release.

// style/habu-configured.js

import { configureCss, cssProps, cssVals } from 'habu';
import theme from './theme';
import mixins from './mixins';

const css = configureCss({ theme, cssProps, cssVals, mixins });
export default css;

Abbreviations

Any css property or value is checked against the abbreviation dictionaries in attempt to find a match. If no match is found, the values are assumed to be valid css (css in js). Abbreviations are not supported inside of shorthand css rules. To better understand which abbreviations are supported, browse through the abbreviation files inside of src. You can always extend/mutate the abbreviation objects before passing them to the configureCss function.

// this is ok
css('bs:s')   // { borderStyle: 'solid' }

// this is ok
css('b:1px solid #888')  // { border: '1px solid #888' }

// this is NOT ok
// might be a future enhancement
css('b: 1px s #888')   // { border: '1px s #888' }  invalid css

Theme

Theme is an object that can have as many levels as you want, but no arrays. A typical theme might have colors, breakpoints, and complex css values like shadows or transitions.

// style/theme.js

export default {
  colors: {
    primary: 'rgb(38, 177, 32)',
    accent: 'rgb(214, 123, 237)'
  },
  bp: {
    mobile: 600  // can also be a string (e.g. 10em)
  },
  trans: {
    fade: 'opacity 0.5s ease-out'
  }
};

Configuring css with the theme

In addition to the theme, config accepts an array 'prefixesToRemove'. Normally when using a theme variable, you would write the whole path.

css('c:@colors.primary')  // { color: 'rgb(38, 177, 32)'}

If you add 'colors' to the prefixesToRemove array, you don't need to include colors in the path.

configureCss({ theme, prefixesToRemove: ['colors'] })
css('c:@primary')

Examples of using theme variables

These examples assume you've included the corresponding abbreviations in the config.

css('c:@primary')           // { color: 'rgb(38, 177, 32)' }
css('>@bp.mobile(m:25)')    // '@media (min-width: 600px)' { margin: 25 }
css('b:1px solid @accent')  // { border: '1px solid rgb(214, 123, 237)' }

Pseudo-selectors

css(':hover(bgc:#888)')      // { ':hover': { backgroundColor: '#888' } }
css(':active(bgc:#2592a1)')  // { ':active': { backgroundColor: '#2592a1' } }

Be sure to separate the styles within the pseudo-selector with a semi-colon.

css(':hover(bgc:#888; c:rgb(255,255,255))')

Media queries

If vw or vh is missing, it's assumed to be vw.

css('vw<40em(d:b)')  // '@media (max-width: 40em)': { display: 'block' }
css('<40em(d:b)')    // '@media (max-width: 40em)': { display: 'block' }
css('vh>100(d:b)')   // '@media (min-height: 100px)': { display: 'block' }

Like with pseduo-selectors, be sure to separate the styles within the media-query with a semi-colon.

css('>600(bgc:#888; c:rgb(255,255,255))')

Mixins

A mixin is a function with any arity, but all arguments must be strings. The mixin should return an array of strings which are applied as arguments to the css function. The strings can contain all the goodies that you can use in the css function.

// style/mixins.js

export function pngIcon(size) {
  return [
    ...square(size),
    'bgz:100% 100%',  // { backgroundSize: '100% 100%' }
    'bgr:n'           // { backgroundRepeat: 'no-repeat' }
  ];
}

export function square(size) {
  return [ `w:${size}`, `h:${size}` ];
}

Using a mixin

css(`bg:url(${ICON_URL})`, 'pngIcon(40px)')

Separate the arguments with a semi-colon.

css('spin(2s; loop)')

Use with aphrodite

The css.styles method returns an array of aphrodite stylesheets. If using both habu and aphrodite, you should consider renaming habu's css method to something else. This example is the same one from the top of the page, but habu's css function is called 'habu' on the React context.

import React from 'react';
import { css, StyleSheet } from 'aphrodite';


function MyComponent(props, { habu }) {
  const itemStyle = css(styles.lineItem, habu.styles(':hover(bg:@accentColor)'));

  return (
    <ul className={habu('p:0', 'm:0', 'lineHeight:1.5')}>
      {props.items.map((item, i) => (
        <li key={i} className={itemStyle}>{item}</li>  
      ))}
    </ul>
  );
}

const styles = StyleSheet.create({
  lineItem: {
    display: 'block',
    '@media(min-width: 900px)': {
      display: 'inline-block',
      width: '50%'
    }
  }
})

Moving forward

Please create an issue for any bug report, feature-request, etc.