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

egladorcss

v1.0.0-alpha.4

Published

A utility-first CSS framework for rapidly building custom user interfaces.

Readme


Egladorcss

Egladorcss is a flexible, customizable, and low-level configurable CSS framework for modern web projects. It enables you to quickly add CSS properties to your projects with high performance and minimal output.

Features

  • Flexible Configuration: Customize classes, media queries, and much more with the egladorcss.config.js file.
  • Minimalist Approach: Only the necessary CSS classes are generated, preventing clutter in the project.
  • Dynamic Watch Mode: Automatically detects changes during development and updates the CSS file.
  • PostCSS Support: Comes with PostCSS support for plugin compatibility.
  • Performance Optimization: Prevents unnecessary class conflicts and ensures fast loading with custom structures.

Installation

Installation via NPM

Install Egladorcss in your project by running the following command:

npm install egladorcss

Usage

Getting Started

First, create a configuration file. This file will define how Egladorcss works and which classes it will generate.

npx egladorcss init

This command will create a configuration file named egladorcss.config.js in the root directory of your project.

Generating CSS

Once your configuration file is ready, run the following command to generate the CSS output:

npx egladorcss

This command will use the settings in your egladorcss.config.js file to generate the necessary CSS file for your project.

Watch Mode

To automatically watch your files during development:

npx egladorcss watch

Changes made in watch mode will immediately reflect in the CSS output.

Configuration

You can customize your project in the egladorcss.config.js file. An example configuration is shown below:

export default {
  projects: [
    {
      name: "primary",
      contents: [
        "./dist/**/*.html",
        "./dist/**/*.js",
        "./dist/**/*.php",
        "./dist/**/*.tsx",
      ],
      cssreset: true,
      input: "./dist/css/input-primary.css",
      output: "./dist/css/output-primary.css",
    },
    {
      name: "secondary",
      contents: [
        "./dist/**/*.html",
      ],
      cssreset: true,
      input: "./dist/css/input-secondary.css",
      output: "./dist/css/output-secondary.css",
    },
  ],
};

Supported Features

  • Colors and Themes: Add project-specific colors and themes.
  • Media Queries: Create custom media queries for responsive designs.
  • Pseudo-Classes and Pseudo-Elements: Support for CSS pseudo-classes

Contributing

Egladorcss is an open-source project. You can contribute by suggesting new features or reporting issues on our GitHub page.

License

This project is licensed under the MIT License.