0.0.2 • Published 14 years ago
cssunminifier v0.0.2
CSS Unminifier
A simple utility written in javascript for node.js to unminify CSS. The script is converted from the MrColes.com browser-based css unminifier.
Install the script with npm:
npm install -g cssunminifierRun this to print out an unminified version of a CSS file named style.min.css:
cssunminifier style.min.cssAdditional examples
Save the output to a file:
cssunminifier style.min.css style.cssChange the default tab width from 4 spaces to 8:
cssunminifier -w=8 style.min.cssSave the output to a file, reading from stdin:
cat style.mins.css | cssunminifier - style.cssRead a file from the web:
curl http://mrcoles.com/media/css/base/screen.css | cssunminifier - | lessNotes
You must have node installed to run this script. You can install it with something like homebrew brew install node or manually. Also, here’s a link to Node Package Manager.
The code for this project lives on github.