{"id":25746502,"url":"https://github.com/ibnujakaria/protable","last_synced_at":"2025-11-10T09:02:44.957Z","repository":{"id":41637921,"uuid":"258109290","full_name":"ibnujakaria/protable","owner":"ibnujakaria","description":"A DataTable alternative, written with modern javascript.","archived":false,"fork":false,"pushed_at":"2023-01-07T18:17:48.000Z","size":2208,"stargazers_count":13,"open_issues_count":25,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-13T05:51:54.492Z","etag":null,"topics":["bootstrap-table","datatable","datatable-alternatives","protable","table","tailwind-table","vanilla-js"],"latest_commit_sha":null,"homepage":"https://protable.jagongoding.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ibnujakaria.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-23T06:01:04.000Z","updated_at":"2024-01-16T07:06:24.000Z","dependencies_parsed_at":"2023-02-07T20:17:12.817Z","dependency_job_id":null,"html_url":"https://github.com/ibnujakaria/protable","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ibnujakaria/protable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibnujakaria%2Fprotable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibnujakaria%2Fprotable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibnujakaria%2Fprotable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibnujakaria%2Fprotable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ibnujakaria","download_url":"https://codeload.github.com/ibnujakaria/protable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ibnujakaria%2Fprotable/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265606732,"owners_count":23796998,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap-table","datatable","datatable-alternatives","protable","table","tailwind-table","vanilla-js"],"created_at":"2025-02-26T11:38:36.189Z","updated_at":"2025-11-10T09:02:44.856Z","avatar_url":"https://github.com/ibnujakaria.png","language":"JavaScript","readme":"[![](https://img.shields.io/npm/v/protable)](https://www.npmjs.com/package/protable)\n[![](https://img.shields.io/npm/dt/protable)](https://www.npmjs.com/package/protable)\n[![](https://img.shields.io/jsdelivr/npm/hm/protable)](https://www.jsdelivr.com/package/npm/protable)\n[![](https://img.shields.io/github/size/ibnujakaria/protable/dist/protable.min.js)]()\n[![](https://img.shields.io/github/release-date/ibnujakaria/protable)](https://github.com/ibnujakaria/protable/)\n[![](https://img.shields.io/npm/l/protable)](https://www.npmjs.com/package/protable)\n\n# ProTable\nA data-table alternative written with modern javascript.\n\n## Docs\n\nOpen [Full Documentation](https://protable.jagongoding.com).\n\n## Basic Usage\n\n### Installation\n\n```bash\nnpm i protable\n```\n\n### Create From Array\n\nHTML container:\n```html\n\u003cdiv id=\"table-from-array\"\u003e\u003c/div\u003e\n```\n\nJs: \n```js\nimport { fromArray } from 'protable'\n\nfromArray('#table-from-array', [\n  {\n    name: 'Nurul Huda',\n    relationship: 'Married',\n    blog: 'https://jagongoding.com'\n  },\n  {\n    name: 'Abdullah Wahid',\n    city: 'Bangkalan'\n  },\n  {\n    city: 'Lamongan',\n    name: 'Lendis Fabri',\n    blog: 'https://kopiding.in'\n  },\n  {\n    name: 'Elmo Bachtiar',\n    relationship: 'Single'\n  }\n])\n```\n\nTable Output:\n\n\u003ctable\u003e\u003cthead\u003e\u003ctr\u003e\u003cth\u003eName\u003c/th\u003e\u003cth\u003eRelationship\u003c/th\u003e\u003cth\u003eBlog\u003c/th\u003e\u003cth\u003eCity\u003c/th\u003e\u003c/tr\u003e\u003c/thead\u003e\u003ctbody\u003e\u003ctr\u003e\u003ctd\u003eNurul Huda\u003c/td\u003e\u003ctd\u003eMarried\u003c/td\u003e\u003ctd\u003e\u003ca href=\"https://jagongoding.com\"\u003ehttps://jagongoding.com\u003c/a\u003e\u003c/td\u003e\u003ctd\u003e-\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003eAbdullah Wahid\u003c/td\u003e\u003ctd\u003e-\u003c/td\u003e\u003ctd\u003e-\u003c/td\u003e\u003ctd\u003eBangkalan\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003eLendis Fabri\u003c/td\u003e\u003ctd\u003e-\u003c/td\u003e\u003ctd\u003e\u003ca href=\"https://kopiding.in\"\u003ehttps://kopiding.in\u003c/a\u003e\u003c/td\u003e\u003ctd\u003eLamongan\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003eElmo Bachtiar\u003c/td\u003e\u003ctd\u003eSingle\u003c/td\u003e\u003ctd\u003e-\u003c/td\u003e\u003ctd\u003e-\u003c/td\u003e\u003c/tr\u003e\u003c/tbody\u003e\u003c/table\u003e\n\n### Create Complex Table From Array\n\n```js\nimport { fromArray } from 'protable'\n\nfromArray('#table-from-array-2', [\n  {\n    name: 'Nurul Huda',\n    birth: {\n      day: 1,\n      month: 'January',\n      year: 1996\n    },\n    city: 'Surabaya'\n  },\n  {\n    name: 'Wahid Abdullah',\n    birth: {\n      day: 2,\n      month: 'February',\n      year: 1996\n    },\n    city: 'Bangkalan'\n  },\n  {\n    name: 'Lendis Fabri',\n    birth: {\n      day: 3,\n      month: 'Maret',\n      year: 1996\n    },\n    city: 'Lamongan'\n  }\n])\n```\n\nTable Output:\n\n\u003ctable\u003e\u003cthead\u003e\u003ctr\u003e\u003cth rowspan=\"2\"\u003eName\u003c/th\u003e\u003cth colspan=\"3\"\u003eBirth\u003c/th\u003e\u003cth rowspan=\"2\"\u003eCity\u003c/th\u003e\u003c/tr\u003e\u003ctr\u003e\u003cth\u003eDay\u003c/th\u003e\u003cth\u003eMonth\u003c/th\u003e\u003cth\u003eYear\u003c/th\u003e\u003c/tr\u003e\u003c/thead\u003e\u003ctbody\u003e\u003ctr\u003e\u003ctd\u003eNurul Huda\u003c/td\u003e\u003ctd\u003e1\u003c/td\u003e\u003ctd\u003eJanuary\u003c/td\u003e\u003ctd\u003e1996\u003c/td\u003e\u003ctd\u003eSurabaya\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003eWahid Abdullah\u003c/td\u003e\u003ctd\u003e2\u003c/td\u003e\u003ctd\u003eFebruary\u003c/td\u003e\u003ctd\u003e1996\u003c/td\u003e\u003ctd\u003eBangkalan\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd\u003eLendis Fabri\u003c/td\u003e\u003ctd\u003e3\u003c/td\u003e\u003ctd\u003eMaret\u003c/td\u003e\u003ctd\u003e1996\u003c/td\u003e\u003ctd\u003eLamongan\u003c/td\u003e\u003c/tr\u003e\u003c/tbody\u003e\u003c/table\u003e\n\n## License\n\nThe Pro Table library is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibnujakaria%2Fprotable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fibnujakaria%2Fprotable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibnujakaria%2Fprotable/lists"}