{"id":15975778,"url":"https://github.com/PallasSystems/react-bootstrap-table","last_synced_at":"2025-10-20T15:31:35.865Z","repository":{"id":178447879,"uuid":"661746110","full_name":"PallasSystems/react-bootstrap-table","owner":"PallasSystems","description":"A React Library which is able to produce dynamic tables using the Bootstrap framework","archived":false,"fork":false,"pushed_at":"2025-01-22T04:49:11.000Z","size":10241,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-24T01:51:09.026Z","etag":null,"topics":["bootstrap","bootstrap5","react","table"],"latest_commit_sha":null,"homepage":"https://rbt.pallas.uk/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PallasSystems.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-03T14:49:38.000Z","updated_at":"2025-01-02T12:50:58.000Z","dependencies_parsed_at":"2023-07-16T09:50:53.923Z","dependency_job_id":"cfc65be7-980c-4de4-b7f4-92e0f5e6eed2","html_url":"https://github.com/PallasSystems/react-bootstrap-table","commit_stats":{"total_commits":190,"total_committers":4,"mean_commits":47.5,"dds":0.4052631578947369,"last_synced_commit":"a355d3d3e1221c0812f5b7e0970ac7842422ecc4"},"previous_names":["pallassystems/react-bootstrap-library","pallassystems/react-bootstrap-table"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PallasSystems%2Freact-bootstrap-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PallasSystems%2Freact-bootstrap-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PallasSystems%2Freact-bootstrap-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PallasSystems%2Freact-bootstrap-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PallasSystems","download_url":"https://codeload.github.com/PallasSystems/react-bootstrap-table/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237358349,"owners_count":19297059,"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","bootstrap5","react","table"],"created_at":"2024-10-07T22:05:05.184Z","updated_at":"2025-10-20T15:31:30.479Z","avatar_url":"https://github.com/PallasSystems.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Bootstrap Table Libary\n\n[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=PallasSystems_react-bootstrap-table\u0026metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=PallasSystems_react-bootstrap-table)[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=PallasSystems_react-bootstrap-table\u0026metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=PallasSystems_react-bootstrap-table)[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=PallasSystems_react-bootstrap-table\u0026metric=coverage)](https://sonarcloud.io/summary/new_code?id=PallasSystems_react-bootstrap-table)![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven.svg?label=License)[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com)\n\nA library to create a data grid using React, Bootstrap \u0026 Bootstrap Icons. This was written as other Bootstrap libraries were written against old versions of React/Bootstrap and everything else was based on the Material UI framework.\n\n![Image of the Table](https://github.com/PallasSystems/react-bootstrap-table/blob/main/docs/react-bootstrap-table.png?raw=true)\n\n## Getting Started\n\n1. Ensure that you have React 18 or later installed\n2. Install Peer Dependencies\n\n```bash\nnpm install react-bootstrap react-bootstrap-icons\n```\n\n3. Install react-bootstrap-table\n\n```bash\nnpm install @pallassystems/react-bootstrap-table\n```\n\n### Usage\n\n```javascript\nimport React, { useMemo, useRef, useState, useEffect } from 'react';\nimport type { RBTColumnDefs } from '@pallassystems/react-bootstrap-table';\nimport { RBTable } from '@pallassystems/react-bootstrap-table';\n\ntype Person = {\n  name: string;\n  age: number;\n};\n\nconst data: Person[] = [\n  {\n    name: 'John',\n    age: 30,\n  },\n  {\n    name: 'Sara',\n    age: 25,\n  },\n];\n\nexport default function App() {\n  const columns = useMemo\u003cRBTColumnDefs\u003cPerson\u003e[]\u003e(\n    () =\u003e [\n      {\n        accessorKey: 'name', //simple recommended way to define a column\n        header: 'Name',\n      },\n      {\n        accessorFn: (row) =\u003e row.age, //alternate way\n        id: 'age', //id required if you use accessorFn instead of accessorKey\n        header: 'Age',\n        Header: () =\u003e \u003ci\u003eAge\u003c/i\u003e, //optional custom header render\n      },\n    ],\n    [],\n  );\n\n  return \u003cRBTable columns={columns} data={data} /\u003e;\n}\n```\n\n## Develop and Contribute\n\nWe welcome questions, ideas, issues and code contributions to this project.\n\nUse the [issues page](https://github.com/PallasSystems/typr/issues) to get in touch with the community.\n\nIf you would like to make a code contribution please fork the repository and create a\n[GitHub pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests) to the `main` branch.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPallasSystems%2Freact-bootstrap-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FPallasSystems%2Freact-bootstrap-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPallasSystems%2Freact-bootstrap-table/lists"}