cssauron-json

1.0.0 • Public • Published

cssauron-json

CSSauron preconfigured for JSON nodes emitted from json-parse-stream.

 
var css = require('cssauron-json')
  , json = require('json-parse-stream')()
 
var sel = css('.key > .val')
 
json.write('{"key": {"val": 3, "key": 2}}')
    .on('data', function(node) {
      if(sel(node)) {
        console.log(node)  // emits for top level key only
      }
    })
 

api

.class maps to the key attribute of a node. tag queries may be object, array, string, number, null, boolean. > operators are allowed, but ~ and + are not.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i cssauron-json

Weekly Downloads

3

Version

1.0.0

License

MIT

Last publish

Collaborators

  • chrisdickinson