{"id":14962591,"url":"https://github.com/vincjo/datatables","last_synced_at":"2025-04-12T22:17:28.612Z","repository":{"id":64385999,"uuid":"575424626","full_name":"vincjo/datatables","owner":"vincjo","description":"A toolkit for creating datatable components with Svelte","archived":false,"fork":false,"pushed_at":"2025-03-09T14:14:34.000Z","size":8767,"stargazers_count":527,"open_issues_count":9,"forks_count":20,"subscribers_count":11,"default_branch":"main","last_synced_at":"2025-04-12T22:17:09.069Z","etag":null,"topics":["datatable","datatables","filter","headless","lazy-loading","pagination","selection","simple","sort","svelte","sveltejs","table"],"latest_commit_sha":null,"homepage":"https://vincjo.fr/datatables","language":"TypeScript","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/vincjo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-07T13:38:04.000Z","updated_at":"2025-04-10T09:35:34.000Z","dependencies_parsed_at":"2024-06-04T16:06:44.298Z","dependency_job_id":"fa4f2174-cd70-42e5-90be-bb02f993a3bf","html_url":"https://github.com/vincjo/datatables","commit_stats":{"total_commits":446,"total_committers":7,"mean_commits":"63.714285714285715","dds":0.04932735426008972,"last_synced_commit":"30e9f89c42b258b8a9fad39d479039e9f8fc9e8a"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vincjo%2Fdatatables","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vincjo%2Fdatatables/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vincjo%2Fdatatables/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vincjo%2Fdatatables/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vincjo","download_url":"https://codeload.github.com/vincjo/datatables/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248637786,"owners_count":21137538,"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":["datatable","datatables","filter","headless","lazy-loading","pagination","selection","simple","sort","svelte","sveltejs","table"],"created_at":"2024-09-24T13:30:06.169Z","updated_at":"2025-04-12T22:17:28.585Z","avatar_url":"https://github.com/vincjo.png","language":"TypeScript","readme":"\u003cdiv align=\"center\"\u003e\n    \u003cimg align=\"center\" src=\"./static/logo.svg\" alt=\"logo\" width=\"172\"/\u003e\n    \u003cp align=\"center\"\u003e\n        \u003ch1 align=\"center\" style=\"font-size:32px;margin:0;border:none;\"\u003esvelte simple datatables\u003c/h1\u003e\n        \u003cp style=\"color:#eee\"\u003eA powerful toolkit for building datatable components.\u003c/p\u003e\n        \u003cimg src=\"https://img.shields.io/badge/svelte-runes-v2?color=%23c2185b\" alt=\"any text\"/\u003e\n        \u003cimg src=\"https://img.shields.io/github/license/vincjo/datatables?color=c2185b\" alt=\"last commit\"/\u003e\n    \u003c/p\u003e\n\u003c/div\u003e\n\n\n\n# Docs\nStreamline your data workflow with a robust API providing advanced features while reducing code complexity.\n\n:globe_with_meridians: **[vincjo.fr/datatables](https://vincjo.fr/datatables)**\n\n\n\n# Install\n\n```apache\nnpm i -D @vincjo/datatables\n```\n\n\n# Smooth transition from v1 to v2\n\nIn order to make the migration process a little easier, v1 is embed in “legacy” namespace so you will have the opportunity to upgrade your components progressively by simply modifying imports.\n\n```diff\n- @vincjo/datatables\n+ @vincjo/datatables/legacy\n\n- @vincjo/datatables/remote\n+ @vincjo/datatables/legacy/remote\n```\n\u003cbr\u003e\n\n\n# Sample code\n\n```svelte\n\u003cscript lang=\"ts\"\u003e\n    import { TableHandler } from '@vincjo/datatables'\n    import { someData } from './data'\n\n    const table = new TableHandler(someData, { rowsPerPage: 50 })\n\u003c/script\u003e\n\n\u003ctable\u003e\n    \u003cthead\u003e\n        \u003ctr\u003e\n            \u003cth\u003eFirst name\u003c/th\u003e\n            \u003cth\u003eLast name\u003c/th\u003e\n        \u003c/tr\u003e\n    \u003c/thead\u003e\n    \u003ctbody\u003e\n        {#each table.rows as row}\n            \u003ctr\u003e\n                \u003ctd\u003e{row.first_name}\u003c/td\u003e\n                \u003ctd\u003e{row.last_name}\u003c/td\u003e\n            \u003c/tr\u003e\n        {/each}\n    \u003c/tbody\u003e\n\u003c/table\u003e\n```\n\n\n\n","funding_links":[],"categories":["UI Components","Recently Updated","TypeScript"],"sub_categories":["Table","[Oct 27, 2024](/content/2024/10/27/README.md)"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvincjo%2Fdatatables","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvincjo%2Fdatatables","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvincjo%2Fdatatables/lists"}