1.1.1 • Published 12 years ago

ncss v1.1.1

Weekly downloads
9
License
-
Repository
github
Last release
12 years ago

ncss

This node.js module is a streaming compressor for CSS. Unlike other CSS minifiers it works on a stream and is optimized for speed.

Still Maintained

installation

npm install ncss

usage

var ncss = require('ncss');
var min = ncss('.selector { background: black; }');

or

ncss < input_file > output_file

Using ncss with Connect or Express

ncss also comes with middleware for connect. See examples for more advanced usage.

var pub = __dirname + '/public';
connect.createServer(ncss.middleware(pub), connect.static(pub)).listen(3000);