{"id":20049854,"url":"https://github.com/botui/.github","last_synced_at":"2026-03-05T12:32:08.899Z","repository":{"id":86743118,"uuid":"550670501","full_name":"botui/.github","owner":"botui","description":null,"archived":false,"fork":false,"pushed_at":"2022-10-13T06:25:29.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T08:29:37.268Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"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/botui.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-13T06:18:57.000Z","updated_at":"2022-10-13T06:19:33.000Z","dependencies_parsed_at":"2023-03-13T19:54:19.188Z","dependency_job_id":null,"html_url":"https://github.com/botui/.github","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/botui/.github","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botui%2F.github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botui%2F.github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botui%2F.github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botui%2F.github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/botui","download_url":"https://codeload.github.com/botui/.github/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botui%2F.github/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30124446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T11:11:57.947Z","status":"ssl_error","status_checked_at":"2026-03-05T11:11:29.001Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-11-13T11:52:54.213Z","updated_at":"2026-03-05T12:32:08.868Z","avatar_url":"https://github.com/botui.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"![logo](https://github.com/botui/botui/raw/main/packages/botui/assets/logo.svg)\n\n[![join discussion](https://img.shields.io/badge/discussions-🤝-blueviolet?style=flat-square)](https://github.com/botui/botui/discussions) [![npm](https://img.shields.io/npm/v/botui.svg?style=flat-square)](https://www.npmjs.com/package/botui) [![npm](https://img.shields.io/npm/dm/botui.svg?style=flat-square)](https://www.npmjs.com/package/botui) [![Twitter Follow](https://img.shields.io/twitter/follow/moinism)](https://twitter.com/moinism)\n\n\u003e A JavaScript framework for creating conversational UIs.\n\n\n[Main Site](https://botui.org) - [Read Docs](https://docs.botui.org) - [Examples](https://github.com/moinism/botui-examples) - [🪄 Quickstart](https://github.com/botui/react-quickstart)\n\n## Showcase 🎇✨\n\nWe are listing all the cool projects that people are building with BotUI, [here](https://github.com/botui/botui/blob/master/Showcase.md). See others' and add yours!\n\n### Quick look\n\n![preview](https://github.com/botui/botui/raw/main/packages/botui/assets/botui_preview.gif)\n\n## Installation\n\n```bash\nnpm i botui@next @botui/react\n```\n\n### Example usage in React\n\n```js\nimport { useEffect } from 'react'\nimport { createRoot } from 'react-dom/client'\n\nimport { createBot } from 'botui'\nimport { BotUI, BotUIMessageList, BotUIAction, useBotUI } from '@botui/react'\n\nconst myBot = createBot()\n```\n\n```html\n\u003cdiv id=\"botui-app\"\u003e\u003c/div\u003e\n```\n\n```js\nconst App = () =\u003e {\n\n  useEffect(() =\u003e {\n    myBot\n      .wait({ waitTime: 1000 })\n      .then(() =\u003e myBot.message.add({ text: 'hello, what is your name?' }))\n      .then(() =\u003e myBot.action.set(\n          {\n            options: [\n              { label: 'John', value: 'john' },\n              { label: 'Jane', value: 'jane' },\n            ],\n          },\n          { actionType: 'select' }\n      ))\n      .then((data) =\u003e myBot.message.add({ text: `nice to meet you ${data.selected.label}` }))\n  }, [])\n\n  return \u003cdiv\u003e\n    \u003cBotUI bot={myBot}\u003e\n      \u003cBotUIMessageList /\u003e\n      \u003cBotUIAction /\u003e\n    \u003c/BotUI\u003e\n  \u003c/div\u003e\n}\n\nconst containerElement = document.getElementById('botui-app')\nconst root = createRoot(containerElement)\nroot.render(\u003cApp /\u003e)\n```\n\n### License\n\n[MIT License](https://github.com/moinism/botui/blob/master/LICENSE) - Copyrights (c) 2017-22 - Moin Uddin\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbotui%2F.github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbotui%2F.github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbotui%2F.github/lists"}