0.3.0 • Published 7 years ago

read-css v0.3.0

Weekly downloads
14
License
ISC
Repository
github
Last release
7 years ago

read-css

Read a CSS file into an AST. AST format is from the css.parse method. Methods work like fs.readFile and fs.readFileSync. If you supply a callback, method will be async. If not, method will be sync.

install

npm install read-css

usage

const read = require('read-css')

sync usage

read('example.css') // tree

async usage

const callback = (err, data) => {
  if (err) throw err
  console.log(JSON.stringify(data, null, 2))
}

read('example.css', callback)

output

const read = require('read-css')
read('test.css')

View sample AST output in test.json

develop

npm install
npm test

related

reap-css