clean-css is a fast and efficient CSS optimizer for the Node.js platform and any modern browser
clean-css is a fast and efficient CSS optimizer for the Node.js platform and any modern browser.
According to tests it is one of the best available.
How to Install
npm install --save-dev clean-css
Usage
var CleanCSS = require('clean-css');
var input = 'a{font-weight:bold;}';
var options = { /* options */ };
var output = new CleanCSS(options).minify(input);