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

@goranmedic/css-utilities

v1.0.2

Published

Common css utility classes that can be used in any project

Downloads

7

Readme

Avoid unnecessary rewrite of CSS classes every time you start a new project and maintain consistency between your projects with this small lib.

Installation

npm i --save @goranmedic/css-utilities

How to add styles to your project

You can add everything by including ./node_modules/@goranmedic/css-utilities/dist/index.css or separate files by including the file you need: ./node_modules/@goranmedic/css-utilities/dist/paddings.css for paddings.

Includes:

* margins from 0 to 50 in increments of 5
* paddings from 0 to 50 in increments of 5
* 9 variations of 11 colors
* font sizes from 8 to 36 in increments of 2
* flexbox classes (including order,grow and shrink attributes from 0 to 10 in increments of 1)
* borders from 1 to 5 in increments of 1
* border radiuses from 0 to 14 in increments of 2
* colored borders 
* colored backgrounds
* colored text

How to use

All classes have .mod- prefix, followed by attribute and value Some examples:

* `margin-top: 20px` is `.mod-margin-top-20` 
* `margin: 20px` is `.mod-margin-20` 
* `padding-bottom: 10px` is `.mod-padding-bottom-10` 
* `padding: 10px` is `.mod-padding-10` 
* `border-color: #868e97` is `.mod-border-color-gray-6` 
* `border: 5px solid #ced4db` is `.mod-border-5` 
* `border-radius: 12px` is `.mod-border-radius-12` 
* `background-color: #ff8788` is `.mod-background-color-red-4` 
* `color: #dee2e7` is `.mod-color-gray-3` 
* `font-size: 10px` is `.mod-font-10` 
* `display: flex` is `.mod-display-flex` 
* `justify-content: center` is `.mod-justify-content-center` 
* `flex-direction: column-reverse` is `.mod-flex-direction-column-reverse` 
* `flex-grow: 6` is `.mod-flex-grow-6` 

I'll try to add more classes in the following versions.