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

macian

v1.1.0

Published

Functional CSS framework

Readme

Screenshot

Macian is a Tachyons-inspired CSS framework. The goal with Macian is to create a lightweight yet versatile CSS framework to simplify the process of creating things for the web and to unify my creations under a set of standards.

Philosophy

Macian (much like Tachyons and other atomic-type CSS frameworks) tries to bridge the gap between HTML and the underlying styles by creating CSS classes that have a 1:1 correlation to the style attributes. For example, instead of having a heading class that applies a font size, font weight, and margins above and below, Macian provides the f1, fw4, and mb3 classes, which set those three styles separately. The benefit is more fine-grain control, less ambiguity as to what class is applying what styles, and less priority conflict between styles.

In addition, class names should be easy to intuit by thinking about the underlying style. If the style has a unit associated with it, like ems or percentages, a number is appended to the class name. Macian uses a hexadecimal numbering system, which has "numbers" from 0 through f, where a = 10, b = 11, c = 12 and so on, with f being the max value. If the style has a string value, like dashes or absolute, then the first letter of that value is appended to the class name.

For example, applying a medium amount of padding to an element is accomplished with the p4 class. Applying the same amount of padding only to the top of an element is accomplished with the pt4 class (padding-top). To apply a border to all sides of an element, apply the ba class. To set the border style to dashed, also apply the bsd class.

Features

  • Mobile-first architecture
  • Golden ditonic typographic scale
  • Small utility classes

Usage

<link rel="stylesheet" href="https://unpkg.com/macian/macian.min.css">

By Avanier and Jake. Licensed under MIT.

Note

This is a fork of Josh's GitLab repo. I have decided to improve this a bit and maintain an npm version as I find it very useful in my own projects especially for rapid prototyping.