Given a js object, output a tree of divs that reflect it
npm install js-to-divsConvert a json object into a tree of divs for easily displaying using css.
See Specification for examples.
JSON is a great format for creating unstructured, or semi-structured data. It doesn't, however, show up too well on a browser.
This utility converts a json object in set of nested divs, with classes for easy formatting, using plain old CSS.
It produces the html frag with no new lines or indentation. If you need this, try 'xml-formatter'.
Paste this in to runkit
``js
var divs = require("js-to-divs");
var format = require("xml-formatter");
format( '
Test
Clone me, and run
`npm run qa``This package has no production dependencies.
Maintain compatibility with node4+.
- [ ] Make me run from command line