Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A CSS minification, pretty printing, and general utility library written in JS.
Crass is one of only a handful of CSS minifiers that creates a full parse tree of the CSS. Most other CSS minifiers operate on the string source instead, which makes it impossible to perform all types of optimizations.
Pros:
Cons:
Crass is built with ES2015 and requires Node 6 or higher.
npm install --save-dev crass
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.
If you npm install -g crass
, you'll get crass
on your PATH.
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.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:
b, c, a {
third: rgba(255, 255, 255, 0.9);
second: abc;
first: 50%;
}
into something that looks like:
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.
Crass performs very well in many CSS minification benchmarks. See goalsmashers' css minification benchmark for more.
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:
http://www.mattbasta.com/crass/
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.
@import
statements?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.
FAQs
A CSS utility library for JS
We found that crass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.