Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

json2dom

balan9MIT1.0.7

A utility for generating DOM string from JSON

json2dom, domutility, json, to, dom

readme

A very simple utility for generating HTML from a JSON. Useful while working with isomorphic apps where you need to share markup between client and server.


var json2dom = require("json2dom");

var json = { 
    tagname:"div",
    attributes:{
        id:"hello",
        class:"world"},
    value:"hello, World",
    children:[
        {
            tagname:"img",
            attributes:{
                src:"hello.png"
            }
        },
        {
            tagname:"p",
            value:"content of child"
        }
    ]
    };

var html = json2dom(json);

would create an HTML string like


<div id='hello' class='world'>
    <img src='hello.png'></img>
    <p>content of child</p>
hello, World
</div>