A minimal DOM implementation
vardocument=require("min-document")vardiv=document.createElement("div")div.className="foo bar"varspan=document.createElement("span")div.appendChild(span)span.textContent="Hello!"/* <div class="foo bar"> <span>Hello!</span> </div>*/varhtml=String(div)npm install min-document
- Raynos

