Findin' unused css selectors in your html, slappin' them around, and choppin' em out.
- Love. You must love the Pandas.
- NodeJS. You must install NodeJS.
npm install -g css-slap-chop
There is a Command Line Interface tool. Don't be bummed! The CLI is the most powerful interface of all.
css-slap-chop
That was fun! No problem. Now we can go and get CSS Slap Chop to show us a more friendly CSS document.
css-slap-chop -css ./app.css -html ./index.html
Cool! If you want to create a file just use some UNIX IO redirect magic.
css-slap-chop -css ./app.css -html ./index.html > ./tidy.css
Gnar.
Oh no! It fucking removed the stuff I add dynamically with captain AJAX what will I do?
Chill bitch! CSS Slap Chop can optionally take a JSON file contiaining selectors you want it to ignore.
The CSS Slap Chop can be accessed as a lib in NodeJS.
var csc = require('css-slap-chop')
csc.tidy({css:path_to_css, html:path_to_html, ignore:path_to_ignore_json}, function(err, css) {
if (err) throw err
console.log(css)
})