{"id":49034216,"url":"https://github.com/fabkho/cmd-bar","last_synced_at":"2026-04-19T10:05:39.362Z","repository":{"id":197223273,"uuid":"676174842","full_name":"fabkho/cmd-bar","owner":"fabkho","description":"Performant, unstyled command palette for Vue 3.","archived":false,"fork":false,"pushed_at":"2026-03-23T11:53:46.000Z","size":10728,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-24T09:02:08.789Z","etag":null,"topics":["cmdk","command","command-bar","command-k","command-palette","vue","vue3"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/fabkho.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-08T15:43:02.000Z","updated_at":"2026-03-23T11:53:39.000Z","dependencies_parsed_at":"2026-03-23T14:04:38.052Z","dependency_job_id":null,"html_url":"https://github.com/fabkho/cmd-bar","commit_stats":null,"previous_names":["fabkho/cmd-bar"],"tags_count":40,"template":false,"template_full_name":null,"purl":"pkg:github/fabkho/cmd-bar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabkho%2Fcmd-bar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabkho%2Fcmd-bar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabkho%2Fcmd-bar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabkho%2Fcmd-bar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabkho","download_url":"https://codeload.github.com/fabkho/cmd-bar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabkho%2Fcmd-bar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32002364,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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":["cmdk","command","command-bar","command-k","command-palette","vue","vue3"],"created_at":"2026-04-19T10:05:38.946Z","updated_at":"2026-04-19T10:05:39.346Z","avatar_url":"https://github.com/fabkho.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cmd-bar wip\n\n![Preview](./public/cmd-bar.png)\n\n[![npm version][npm-version-src]][npm-version-href]\n[![npm downloads][npm-downloads-src]][npm-downloads-href]\n[![License][license-src]][license-href]\n[![Vue][vue-src]][vue-href]\n\n## Features\n\n- 🎨\u0026nbsp; **Unstyled** - No styles included, you can style it as you want\n- 🧩\u0026nbsp; **Extensible** - You can add your own Modal and components\n- ⌨️\u0026nbsp; **Key bindings** - Usable with just a keyboard\n- 🧙‍\u0026nbsp; **Virtualized** - It uses [useVirtualList](https://vueuse.org/core/useVirtualList/#usevirtuallist)\n\n[📖 \u0026nbsp;Read more](https://cmd-bar.nuxt.space)\n\n## Quick Setup\n\n1. Add `cmd-bar` dependency to your project\n\n```bash\n# Using pnpm\npnpm add -D cmd-bar\n\n# Using yarn\nyarn add --dev cmd-bar\n\n# Using npm\nnpm install --save-dev cmd-bar\n```\n\n2. Then you can import the `CmdBar` Compound Component in your project.\n```ts\nimport { CmdBar } from 'cmd-bar'\n\n\u003cCmdBar :groups=\"groupedCommands\" /\u003e\n  \u003cCmdBarDialog\u003e\n    \u003ctemplate #header\u003e\n      \u003cCmdBarInput placeholder=\"search fo anything /\u003e\n    \u003c/template\u003e\n    \u003ctemplate #content\u003e\n      \u003cCmdBarList :config=\"listConfig\"\u003e\n          \u003ctemplate #default=\"{ command }\"\u003e\n            \u003cdiv class=\"leading\"\u003e\n              \u003cimg :src=\"command.leading\" alt=\"icon\" /\u003e\n              {{ command.label }}\n            \u003c/div\u003e\n            \u003cspan v-if=\"command.shortcut\" class=\"actions\"\u003e\n              \u003ckbd v-for=\"shortcut of formattedShortcuts(command.shortcut)\" :key=\"shortcut\"\u003e\n                {{ shortcut }}\n              \u003c/kbd\u003e\n            \u003c/span\u003e\n          \u003c/template\u003e\n      \u003c/CmdBarList\u003e\n    \u003c/template\u003e\n  \u003c/CmdBarDialog\u003e\n\u003c/CmdBar\u003e\n```\n\nThat's it! ✨\n\n[📖 \u0026nbsp;Read more](https://cmd-bar.nuxt.space/introduction/getting-started)\n\nProps to [xiaoluoboding/vue-command-palette](https://github.com/xiaoluoboding/vue-command-palette)  and [CommandPalette - Nuxt UI](https://ui.nuxt.com/navigation/command-palette), for the inspiration.\n\n\u003c!-- Badges --\u003e\n[npm-version-src]: https://img.shields.io/npm/v/cmd-bar/latest.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-version-href]: https://npmjs.com/package/cmd-bar\n\n[npm-downloads-src]: https://img.shields.io/npm/dm/cmd-bar.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[npm-downloads-href]: https://npmjs.com/package/cmd-bar\n\n[license-src]: https://img.shields.io/npm/l/cmd-bar.svg?style=flat\u0026colorA=18181B\u0026colorB=28CF8D\n[license-href]: https://npmjs.com/package/cmd-bar\n\n[vue-src]: https://img.shields.io/badge/Vue-18181B?\u0026logo=vue.js\n[vue-href]: https://vuejs.org\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabkho%2Fcmd-bar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabkho%2Fcmd-bar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabkho%2Fcmd-bar/lists"}