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 🙏

© 2024 – Pkg Stats / Ryan Hefner

csscompressor

v0.0.2

Published

CSS Compressor to minify CSS files

Downloads

3

Readme

CSSCompressor

Plugin based CSS Compressor.

  • Full Featured Demo and Rule Documentation
  • Extensive logging of each compression, including position/selection of text in the stylesheet
  • Entirely customizable, can turn individual compressions on/off with no dependencies.
  • Writing custom compressions are relatively easy.

Installation

$ npm install csscompressor 

CSSCompressor may also be run in a browser environment.

<script type='text/javascript' src='CSSCompressor.js'></script>

Usage

// Straight compression
console.log( CSSCompressor.compress( css, options ) );

// Instance based
var compressor = new CSSCompressor( options );
console.log( compressor.compress( css ) );

Options & Modes

Modes are a way to use a predefined set of rule compressions. Each compressor starts off in the 'default' mode, and compressions can be turned off/on through the options object of the compress function, or updating the settings object.

var compressor = new CSSCompressor( options );
compressor.compress( css ); // is really 'compressor.compress( css, CSSCompressor.MODE_DEFAULT )'

// Or pass an object of compression options to update the default set
compressor.compress( css, {
	'RGB to Hex': true,
	'Hex to Color': false
});

// Or update the settings object directly.
compressor.settings.update({
	'RGB to Hex': true,
	'Hex to Color': false
});

Take a look at the rules section of the demo to get a list of all the possible options.


Cli

To install the build script, add the global flag when installing through npm

$ npm install -g csscompressor
$ cssc styles.css > styles.min.css

// Or you can pipe your sheet
$ cat styles.css | cssc > styles.min.css

By default, the script reads the files in order they are passed, concatenates them, compresses them, then sends it to stdout. For the most part, CSSCompressor is meant to belong in build scripts, but there are a few options that can be applied to the cli script

  • --mode=name: Assigns a mode to the compressor object
  • --on=rule-name: Turns rule compression on
  • --off=rule-name: Turns rule compression off
  • --format=none: Level of output format, defaulted to none
  • --output=/path/to/output.min.css: Specifies output path of compression result. If left undefined, output is sent to stdout.

Custom Rules

CSSCompressor is built on modular based compressions. Each compression option has it's own function that finds the exact parts it wants to alter, and makes changes. With that, there are 4 types of custom rules that may be applied: addRule, addRuleBlock, addRuleSheet, and addValue. If you haven't yet, please go look at the CSSTree document before reading further to get an idea of what a branch looks like.


addRule

addRule is used for individual property/value compressions. For example, converting the color value 'black' to it's shorter hex code alternative '#000':

CSSCompressor.addRule( 'Special Black to Hex Converter', function( rule, branch, compressor ) {
	if ( rule.property == 'color' && rule.parts[ 0 ] == 'black' ) {
		rule.parts[ 0 ] = '#000';
	}
});

addRuleBlock

addRuleBlock is used for rule set compressions. A full branch is passed to the callback to be rendered for combination style compressions. For example, removing all color properties in a div block

CSSCompressor.addRuleBlock( 'Remove All Color Properties in Divs', function( branch, compressor ) {
	if ( ! branch.selector || ! branch.selector.exec( /div$/i ) || ! branch.rules ) {
		return;
	}

	for ( var i = 0, rule; i < branch.rules.length; i++ ) {
		rule = branch.rules[ i ];

		if ( rule.property == 'color' ) {
			branch.rules.splice( i, 1 );
			i--;
		}
	}
});

addRuleSheet

addRuleSheet is used for full stylesheet compressions. The callback is passed the entire stylesheet AST in the branches array for inspection and compression. For example, to remove all comments:

CSSCompressor.addRuleSheet( 'Remove Comments', function( branches, compressor ) {
	for ( var i = 0, branch; ++i < branches.length; i++ ) {
		branch = branches[ i ];

		if ( branch.comment ) {
			branches.splice( i, 1 );
			i--;
		}
	}
});

addValue

addValue is used for specific string value compressions. It works a little different in that there are no rules or blocks attached to the string, only a possible position. An example would be compressing color strings inside gradient values. This is the only compression that requires a return value

CSSCompressor.addValue( 'Removing Leading Zeros on Numerics', function( value, position, compressor ) {
	var m = /^0+(\d+[a-z]{2})$/.exec( value );

	if ( m ) {
		value = m[ 1 ];
	}

	return value;
});

Logging

Every branch and rule in a CSSTree comes with a position object that contains a ton of useful information about it's parent object. In CSSCompressor's demo site, the logging function is used to mark the original position in the stylesheet for that compression.

compressor.log( [ key, ] msg, position );

The log method takes 3 parameters, an optional string name of the compression function used, a string message describing what was changed, and the position object of the affected rule/branch. The last parameter may optionally be an array of position objects if multiple branches/rules are affected. Taking the color example from above and adding a log line to it:

CSSCompressor.addRule( 'Special Black to Hex Converter', function( rule, branch, compressor ) {
	if ( rule.property == 'color' && rule.parts[ 0 ] == 'black' ) {
		rule.parts[ 0 ] = '#000';
		compressor.log( "Converting black to it's hex alternative", rule.position );
	}
});

License

The MIT License

Copyright (c) 2013 Corey Hart

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.