{"id":21931757,"url":"https://github.com/lekoala/admini","last_synced_at":"2025-10-12T21:42:23.253Z","repository":{"id":41316631,"uuid":"455630372","full_name":"lekoala/admini","owner":"lekoala","description":"Minimalistic Admin Panel built with Bootstrap 5","archived":false,"fork":false,"pushed_at":"2024-10-09T12:19:37.000Z","size":4033,"stargazers_count":37,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-02T10:48:38.169Z","etag":null,"topics":["admin","bootstrap","cms","css","es6","minimalist","panel","ui"],"latest_commit_sha":null,"homepage":"https://admini.vercel.app","language":"HTML","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/lekoala.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}},"created_at":"2022-02-04T17:06:51.000Z","updated_at":"2025-07-14T02:39:50.000Z","dependencies_parsed_at":"2023-02-19T09:01:47.927Z","dependency_job_id":"211f7613-07bf-4d06-8dbd-41988f7aefa3","html_url":"https://github.com/lekoala/admini","commit_stats":{"total_commits":199,"total_committers":1,"mean_commits":199.0,"dds":0.0,"last_synced_commit":"6d9e9de237a7af462e6efc4f102819a91fcb0e6a"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/lekoala/admini","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lekoala%2Fadmini","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lekoala%2Fadmini/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lekoala%2Fadmini/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lekoala%2Fadmini/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lekoala","download_url":"https://codeload.github.com/lekoala/admini/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lekoala%2Fadmini/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271500361,"owners_count":24770375,"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","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["admin","bootstrap","cms","css","es6","minimalist","panel","ui"],"created_at":"2024-11-28T23:14:56.159Z","updated_at":"2025-10-12T21:42:18.210Z","avatar_url":"https://github.com/lekoala.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Admini\n\n\u003e Minimalistic Admin Panel built with Bootstrap 5.3\n\n## Features\n\n- No bloat, only what's strictly required to get a decent admin panel\n- A nice, modern, Bootstrap 5 based interface\n- A friendly dashboard\n- Extended Avatar UI with badges, icons, pictures, groups...\n- A powerful action system that supports many use cases (multiple actions, drops, navigation, offcanvas panel...)\n- A sane default layout for forms (includes tabbed form support and responsive by default)\n- A nice default set of colors that are more accessible\n- Powerful (but optional) ajax navigation\n- Super lightweight (around 100kb, including bootstrap)\n- Dark mode support\n\n## BS Companion\n\nSome bootstrap related features of admini have been extracted to a third party module called [BS Companion](https://bs-companion.vercel.app/)\n\n- Responsive Table : Nice responsive tables without ugly scrollbars\n- BS Tabs : Improved tabs, that collapse down to a dropdown and with linkable tabs\n- BS Toggle : Self initializing popovers and tabs\n- Toaster : Generate beautiful toast message without markup\n- Modalizer : Generate beautiful modals without markup\n- Form Validator : Consistent validator that works across tabs and accordions\n\n## Form elements\n\nAdmini does not provide any built in custom form elements. This is because we are often used to use specifics\nlibraries based on our usage and personal preferences.\n\nI highly recommend you to use my WIP (but already very stable) [Formidable Elements](https://github.com/lekoala/formidable-elements) collection.\n\nIf you don't find what you need there, you can use [Modular Behaviour](https://github.com/lekoala/modular-behaviour.js).\nIt works beautifully in combination with [skypack](https://www.skypack.dev/).\n\n## Ajax navigation\n\nThe admin panel provides a built-in (but optional) navigation with [sco-pe](https://github.com/lekoala/sco-pe), a custom element made to load page fragments.\n\nChanging from a full page load on each action to a ajax powered navigation as a few side effects that you should not ignore:\n\n- Avoid initializing things multiple time\n- But aware of the state\n- Cleanup when elements are removed\n\nAvoid initializing things multiple time can be done in three ways:\n\n- Have self initializing [custom elements](https://github.com/lekoala/formidable-elements) or use [Modular Behaviour](https://github.com/lekoala/modular-behaviour.js).\n- Happily trigger full page init with multiple init safe scripts (eg: using initialize util provided)\n- Define custom per fragment code with onScopeLoad\n\nYou can also ditch sco-pe completely and use a more robust solution like Turbo or Unpoly. I didn't want to use these\nlibraries because they tend to creep to much into the project architecture. With sco-pe, you can pretty much write\nregular html and it will work with minimal changes. [More on that topic](https://blog.lekoala.be/many-ways-to-deal-with-events-in-javascript).\n\n## Icons and images\n\n- Icons are powered by [Last Icon](https://github.com/lekoala/last-icon)\n- Default set is [material icons](https://fonts.google.com/icons)\n- Images are from [undraw](https://undraw.co/)\n\n## Demo\n\n[Demo is available on Vercel](https://admini.vercel.app/)\n\n## Try at home\n\n### The build setup\n\nAdmini use esbuild to compile the js assets. After cloning this repo, simply run\n\n```\nnpm start\n```\n\nAnd you will get a fully functional local demo to play with.\n\nIf you want to work on the css, run in another terminal the following\n\n```\nnpm run watch-css\n```\n\nAnd your css will be compiled automatically.\n\nNo complicated build pipe :-)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flekoala%2Fadmini","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flekoala%2Fadmini","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flekoala%2Fadmini/lists"}