A Customised Grid with various Options
##Installation
Run npm i simple-table-package
Javascript grid
import * as SimpleTable from "simple-table-package";
const data = [ { id: 1, name: 'John Doe', email: 'john@example.com' }, { id: 2, name: 'Jane Smith', email: 'jane@example.com' }, ];
const columns = ['id', 'name', 'email'];
const myTable = new SimpleTable(data, columns);
myTable.render();
MIT Package