A CSS utility library for JS
npm install crasssh
npm install --save-dev crass
`
API
`js
var crass = require('crass');
// Parse any valid CSS stylesheet:
var parsed = crass.parse('b {font-weight: bold;}');
// Optimize the stylesheet:
parsed = parsed.optimize();
// Pretty print the stylesheet:
console.log(parsed.pretty());
// Print a minified version of the stylesheet:
console.log(parsed.toString());
// The constructors for the AST nodes used to represent the
// parsed CSS are available on crass.objects.
`
Improvements on the API will be made in the future.
Command Line Interface
If you npm install -g crass, you'll get crass on your PATH.
`bash
crass input.css [--optimize [--O1]] [--min x,y,z] [--pretty] [--saveie] [--css4]
`
If you don't specify --min, crass will automatically default to the latest browser version from two years ago. At the time of writing, this is Chrome 39, Firefox 31, IE 11, and Opera 26.
- --optimize: Flag to enable basic optimization
- --O1: Only applies when --optimize is active. Flag to enable more advanced optimizations, though these are not guaranteed to work for all CSS.
- --min: Setting this flag followed by a comma-separated list of browser versions will instruct Crass to strip CSS that would otherwise only apply to browsers older than the versions listed. For example, --min ie9,fx30 would strip CSS that applies only to Firefox 29 and below and Internet Explorer 8 and below. The following prefixes are supported: ie, op, fx, chr
- --pretty: Flag to enable pretty printing of output
- --saveie: Flag to enable features to specifically support Internet Explorer 6 and below
- --css4: Flag that allows optimized output to contain CSS4 features and syntax. This is not be supported in all modern browsers. You should only use this if you explicitly want CSS4 output.
Minification
Outputting a crass object as a string will perform the equivalent of most CSS minification tools. The corresponding styles are output in the minimum amount of CSS possible, without any whitespace.
Some minifiers also perform basic replacement and removal operations to replace certain patterns with other patterns. Using the --optimize and --O1 flags on the command line and .optimize() and .optimize({o1: true}) in the API will perform many of these operations along with additional optimizations that are not possible with traditional minification tools.
For example, since most minification tools do not truly parse CSS, they cannot perform any reordering or transformation. Crass, on the other hand, will rewrite code like this:
`css
b, c, a {
third: rgba(255, 255, 255, 0.9);
second: abc;
first: 50%;
}
`
into something that looks like:
`css
a, b, c {
first: 50%;
second: abc;
third: hsla(0, 0%, 100%, 0.9);
}
`
Reordering selectors and declarations significantly improves minified code sizes. Colors can be translated between HSL/RGB/hex/etc. to use the smallest form.
$3
Crass performs very well in many CSS minification benchmarks. See goalsmashers' css minification benchmark for more.
FAQ
$3
You can import Crass into your project using any appropriate build tool, like browserify or Webpack. Crass's importable modules have no dependencies on anything browser-incompatible.
Check out the Github pages for Crass for a simple browser-ready version:
$3
All comments are ignored at the moment. Support for storing comment data may be added in the future, and contributions to add this support are welcome.
$3
Crass does not follow @import statements. You should use another CSS processing tool to resolve @imports` and inline them appropriately, then use Crass to minify the result.