{"id":15295926,"url":"https://github.com/ashrawan/ngb5-simple-table","last_synced_at":"2026-02-18T13:01:44.517Z","repository":{"id":57155147,"uuid":"432620613","full_name":"ashrawan/ngb5-simple-table","owner":"ashrawan","description":"A simple demo library to quickly integrate simple data with Sortable, Searchable and Pageable features in Angular app. Uses Bootstrap 5 CSS classes.","archived":false,"fork":false,"pushed_at":"2021-11-29T20:57:45.000Z","size":1620,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-14T03:16:09.639Z","etag":null,"topics":["angular11","bootstrap5","datatable","pagination","searching","sorting"],"latest_commit_sha":null,"homepage":"https://ashrawan.github.io/ngb5-simple-table","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ashrawan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-28T04:46:47.000Z","updated_at":"2022-08-17T20:18:20.000Z","dependencies_parsed_at":"2022-08-26T08:30:55.295Z","dependency_job_id":null,"html_url":"https://github.com/ashrawan/ngb5-simple-table","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ashrawan/ngb5-simple-table","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashrawan%2Fngb5-simple-table","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashrawan%2Fngb5-simple-table/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashrawan%2Fngb5-simple-table/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashrawan%2Fngb5-simple-table/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ashrawan","download_url":"https://codeload.github.com/ashrawan/ngb5-simple-table/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ashrawan%2Fngb5-simple-table/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29580636,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:38:15.585Z","status":"ssl_error","status_checked_at":"2026-02-18T08:38:14.917Z","response_time":162,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["angular11","bootstrap5","datatable","pagination","searching","sorting"],"created_at":"2024-09-30T18:08:37.926Z","updated_at":"2026-02-18T13:01:44.501Z","avatar_url":"https://github.com/ashrawan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003ca href=\"http://ashrawan.github.io/ngb5-simple-table\"\u003e\n\u003cdiv align=\"center\"\u003e\n    \u003ch1\u003eNgb5SimpleTable\u003c/h1\u003e\n\u003c/div\u003e\n\u003c/a\u003e\n\u003cp align=\"center\"\u003e(Angular + Bootstrap 5)\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n    \u003ch2\u003e\u0026#60;ngb5-simple-table /\u0026#62;\u003c/h2\u003e\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\nThe Quick way to integrate \u003cstrong\u003eSimple Datatable\u003c/strong\u003e with \u003cstrong\u003eSortable\u003c/strong\u003e, \u003cstrong\u003eSearchable\u003c/strong\u003e and \u003cstrong\u003ePageable\u003c/strong\u003e features in \u003ca href=\"https://angular.io/\"\u003eAngular\u003c/a\u003e app. Uses \u003ca href=\"https://getbootstrap.com/docs/5.1\"\u003eBootstrap 5\u003c/a\u003e CSS classes.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://npmjs.org/ngb5-simple-table\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/ngb5-simple-table/latest.svg\" alt=\"npm latest version\" \u003e\u003c/a\u003e\n\u003cbr/\u003e\n\n\u003c/p\u003e\n\u003c/br\u003e\n\n## Getting Started\n\n__ngb5-simple-table__  provides simple datatable component powered by Angular. It uses Bootstrap 5 so, you need to include Bootstrap 5 with your angular app or use CSS link.\n\n## Installation\n\nInstall `ngb5-simple-table` from `npm`:\n```bash\nnpm install ngb5-simple-table --save\n```\n\n\n## Usage\n\nAdd ```Ngb5SimpleTableModule``` to your App module's ```imports```\n\n```typescript\nimport { NgModule } from '@angular/core';\nimport { BrowserModule } from '@angular/platform-browser';\n\nimport { Ngb5SimpleTableModule } from 'ngb5-simple-table';\n\nimport { AppComponent } from './app/app.component';\n\n@NgModule({\n  imports: [BrowserModule, Ngb5SimpleTableModule],\n  declarations: [AppComponent],\n  bootstrap: [AppComponent]\n})\n\nclass AppModule {}\n\nplatformBrowserDynamic().bootstrapModule(AppModule);\n```\n\n\nAdd component to your page:\n```\n\u003cngb5-simple-table  [title]=\"'Todo List'\"\n                    [dataList]=\"todoList\" \n                    [columns]=\"todoColumns\" \n                    [staticPagination]=\"true\"\u003e\n\u003c/ngb5-simple-table\u003e\n```\n\nYou will also need to add __Bootstrap 5__ to you app. Either add CSS to your `index.html` or you can npm install Bootstrap.\n- `Bootstrap 5`\n```\n  \u003clink href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css\" rel=\"stylesheet\" integrity=\"sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC\" crossorigin=\"anonymous\"\u003e\n```\n\n\u003chr/\u003e\n\n## Running Demo server\n\n1. Run `npm run lib:build` to build the library.\n2. Run `ng serve` for a running demo server. \n\nNavigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.\n\n## For Development\n- Run `npm run lib:build-watch`\n- Run `npm run demo:serve`\n\nMake live changes to project lib `\"ngb5-simple-table\"` and test.\n\n### [Note: Check `package.json` for more info  ]\n\n\u003chr/\u003e\n\n## Code scaffolding\n\nRun `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.\n\n## Further help\n\nTo get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashrawan%2Fngb5-simple-table","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fashrawan%2Fngb5-simple-table","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fashrawan%2Fngb5-simple-table/lists"}