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

@derkatzelp/cssorganizer

v2.1.0

Published

CSSOrganizer is a tool that allows you to configure the sorting of CSS style blocks in both CSS files and Vue Single File Components (SFCs).

Readme

CSSOrganizer

CSSOrganizer is a tool that allows you to configure the sorting of CSS style blocks in both CSS files and Vue Single File Components (SFCs).

source: DerKatzeLP/CSSOrganizer

Features

  • Configurable Sorting: Customize the sorting of CSS style blocks to fit your specific needs.
  • Support for CSS Files and Vue SFCs: Use CSSOrganizer with traditional CSS files and Vue Single File Components.
  • Support Tailwind Css @apply: v2.0.0 now has support for @apply, used by tailwind css.

Not supported yet

  • NO Support for SCSS, SASS, LESS Files: CSSOrganizer is not able to sort .scss or .sass nor .less Files.
  • Grouping comments: CSSOrganizer is not yet able to add grouping comments to your css or vue files
  • Global install: There is a known issue with path regarding global installation

Getting Started

Follow these steps to get started with CSSOrganizer in your project.

Installation

npm install @derkatzelp/cssorganizer --save-dev

Usage

npx css-organizer

Mit benutzerdefiniertem Projekt-Root

npx css-organizer --root /path/to/your/project

Mit benutzerdefiniertem Projekt-Root (Kurzform)

npx css-organizer -r /path/to/your/project

Bash-Variable

npx -p @derkatzelp/cssorganizer css-organizer --root "${PWD}"

pwd Command Substitution

npx -p @derkatzelp/cssorganizer css-organizer --root "$(pwd)"

Relative Path

npx -p @derkatzelp/cssorganizer css-organizer --root .

If no --root argument is provided, CSSOrganizer will use the current working directory as the project root.


Configuration

Sorting

You can customize the sorting behavior by adjusting the configuration in sorting.json. Each group has a properties section in which you can add your keys in a specific order. CSSOrganizer will sort all properties by this given order.

Options

| Key | Values | Default | Description | |------------------|---------|--------------------|-----------------------------------------------------------| | cssFolderPath | String | ./src/assets | Specifies the path to CSS Files (subfolders included) | | showLogFiles | Boolean | true | Enables or disables log report of touched Files | | showLogFolders | Boolean | true | Enables or disables log report of touched Folders | | sortCssFiles | Boolean | true | Enables or disables sorting of CSS Files | | sortVueFiles | Boolean | true | Enables or disables sorting of Vue SFC Files | | vueFolderPath | String | ./src/components | Specifies the path to Vue SFC Files (subfolders included) |

Examples

Before using CSSOrganizer

.class1 {
    position: fixed;
    z-index: 1;
    top: 1rem;
    display: block;
    border: 1px solid black;
    @apply border-1 border-black;
    height: 200px;
    border-radius: 6px;
    width: 450px;
    font-size: 14px;
}

.class2 {
    position: relative;
    z-index: 1;
    top: 2rem;
    display: block;
    border: 2px solid red;
    border-radius: 6px;
    width: 540px;
    height: 120px;
    font-size: 12px;
    @apply border-2 border-red-500 rounded-lg;
}

After using CSSOrganizer

.class1 {
    @apply border-1 border-black;
    position: fixed;
    z-index: 1;
    top: 1rem;
    display: block;
    border: 1px solid black;
    border-radius: 6px;
    width: 450px;
    height: 200px;
    font-size: 14px;
}

.class2 {
    @apply border-2 border-red-500 rounded-lg;
    position: relative;
    z-index: 1;
    top: 2rem;
    display: block;
    border: 2px solid red;
    border-radius: 6px;
    width: 540px;
    height: 120px;
    font-size: 12px;
}

Dependencies

CSSOrganizer relies on the following external library:

No dependencies used

Contributing

If you'd like to contribute to CSSOrganizer, please contact me.

License

This project is licensed under the MIT License.

Acknowledgments

Give credit to any external libraries, tools, or individuals you'd like to acknowledge.

Idea and inspiration

This package is inspired by the css-rule-order