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

cheekycss

v2.6.0

Published

A personal utility css framework

Readme

CheekyCSS

CheekyCSS is a lightweight functional CSS library designed to make styling your web projects fast and simple, with no build step required. It provides a set of utility classes that allow you to write clear, concise, and maintainable styles directly in your HTML.

Installation

You can start using CheekyCSS in your project in two easy ways:

1. Use a CDN

Add the following <link> tag to the <head> of your HTML file to include CheekyCSS directly from a CDN such as jsDelivr or unpkg. This will always serve the latest npm package version:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/cheekycss/cheeky.css" />

Alternatively, you can use unpkg:

<link rel="stylesheet" href="https://unpkg.com/cheekycss/cheeky.css" />

2. Copy the CSS file (recommended)

Alternatively, download the cheeky.css file from the repository and include it locally in your project:

<link rel="stylesheet" href="path/to/cheeky.css" />

Example Usage

Here is a simple example demonstrating how to use CheekyCSS utility classes in your HTML:

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		<title>CheekyCSS Example</title>
		<link
			rel="stylesheet"
			href="https://cdn.jsdelivr.net/npm/cheekycss/cheeky.css"
		/>
	</head>

	<body class="p-4 text-center">
		<h1 class="margin-block-4">Welcome to CheekyCSS</h1>

		<div
			class="flex flex-wrap justify-content-center gap-2 margin-block-4 text-center"
		>
			<div class="p-3">Box 1</div>
			<div class="p-3">Box 2</div>
			<div class="p-3">Box 3</div>
		</div>

		<p class="italic">Simple, clean, and easy to use.</p>
	</body>
</html>

Key Features

  • Utility Classes: A growing set of utility classes for margins, padding, basic typography, layout, positioning, and more.
  • Logical Properties: Uses CSS logical properties for better internationalization and flexible layouts.
  • No Build Step: Just include the CSS file — no preprocessing or bundling required.
  • Tiny File Size: Minimal footprint to keep your projects fast and lightweight.

Alternate Class Names

CheekyCSS provides both verbose and concise aliases for utility classes. For example, you can use the verbose .margin-block-1 or the concise alias .mb-1 to apply the same margin. This flexibility allows you to choose the style that best fits your project and coding preferences.

Philosophy

CheekyCSS is built with clarity and simplicity in mind. It offers concise aliases for common CSS properties to speed up development without sacrificing readability. The goal is to empower developers to write clean, maintainable markup with minimal overhead.

License

This project is licensed under the MIT License.
See https://opensource.org/licenses/MIT for details.