@jst_htet/json2html
TypeScript icon, indicating that this package has built-in type declarations

1.0.18 • Public • Published

Browser plugin for building html from json

import { buildHtmlFromJsonList } from "@jst_htet/json2html";

buildHtmlFromJsonList("#contents", [ 
    {
        attributes: { class: "btn btn-primary" },
        children: [
          { attributes: {}, children: [], element: "#text", text: "Click me" },
        ],
        element: "button",
        text: "Click me",
        events: {
          click: (e) => alert("click"),
        },
    },
]);

Readme

Keywords

none

Package Sidebar

Install

npm i @jst_htet/json2html

Weekly Downloads

3

Version

1.0.18

License

ISC

Unpacked Size

5.2 kB

Total Files

6

Last publish

Collaborators

  • jst_htet