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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@palexdev/cssbeautify-cli

v0.6.0

Published

CLI for cssbeautify

Downloads

5

Readme

npm version

CSS Beautify CLI

CLI for cssbeautify

Installation

npm install -g cssbeautify-cli

Usage

cssbeautify-cli [options] -f filename
cssbeautify-cli [options] -f glob/**/*.pattern

Options:

-a, --autosemicolon  insert a semicolon after the last ruleset                                              [default: false]
-c, --config         json config file to use
-f, --file           file to beautify or glob pattern
-h, --help           show this help message
-i, --indent         string used for the indentation of the declaration (spaces, tabs or number of spaces)  [default: "    "]
-o, --openbrace      the placement of open curly brace, either end-of-line or separate-line                 [default: "end-of-line"]
-s, --stdin          use stdin
-v, --version        Display program version
-w, --writefile      write output to file

Examples

cssbeautify-cli -i2 -o "separate-line" -f ololo.css
cssbeautify-cli --indent="   " -f nyan.css
cssbeautify-cli -f "src/**/*.css" -w dst/style.css

Notes

  • options from config override command line options
  • optimist introduces strange behaviour in some cases, e.g. it's impossible to pass empty indent option in the following form: -i '', but these solutions work just fine: -i0, --indent '', --indent='', --indent=0
  • The behaviour of boolean -a option is quite strange sometimes, check test/autosemicolon.js for details
  • file option is used if both file and stdin options are passed
  • glob patterns should be quoted to avoid shell pattern matching
  • output from multiple files is written into a single destination (file or STDOUT) using /*** FILENAME ***/ as separator

Versions

0.5.3

  • fix #7 Writing to stdout broken when reading from stdin

0.5.2

  • -f option now supports glob

0.5.0

  • -w (--writefile) option added

0.4.1

  • help output fixed

0.4.0

  • -s (--stdin) option added
  • node 0.8 support dropped

0.3.0

  • -c (--config) option added

0.2.1

  • some minor fixes

0.2.0

  • file is now passed in -f (--file) option

0.1.0

  • options -a (--autosemicolon), -h (--help), -i (--indent), -o (--openbrace), -v (--version)
  • file is passed as anonymous option