json-to-simple-html
v1.0.1
Published
A utility to convert JSON data to HTML tables.
Downloads
2
Readme
json-to-html-table
A simple utility to convert JSON data into an HTML table.
Installation
npm install json-to-html-table
Usage
const jsonToTable = require('json-to-html-table');
const data = [
{ "Name": "Alice", "Age": 25, "Occupation": "Engineer" },
{ "Name": "Bob", "Age": 30, "Occupation": "Designer" }
];
const htmlTable = jsonToTable(data);
console.log(htmlTable);
This will output an HTML table string.