{"id":14483557,"url":"https://github.com/MinChatHQ/react-chat-ui","last_synced_at":"2025-08-30T04:31:23.839Z","repository":{"id":83412223,"uuid":"581252662","full_name":"MinChatHQ/react-chat-ui","owner":"MinChatHQ","description":"Build your own chat UI with React Chat UI components in a few minutes. React Chat UI Kit from minchat.io is an open source UI toolkit for developing web chat applications.","archived":false,"fork":false,"pushed_at":"2025-07-17T14:42:58.000Z","size":2483,"stargazers_count":91,"open_issues_count":5,"forks_count":19,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-17T16:43:08.069Z","etag":null,"topics":["chat","communication","components","library","react","reactjs","social","ui"],"latest_commit_sha":null,"homepage":"https://minchat.io","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/MinChatHQ.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,"zenodo":null}},"created_at":"2022-12-22T17:15:13.000Z","updated_at":"2025-07-17T14:43:02.000Z","dependencies_parsed_at":"2025-07-17T19:54:57.800Z","dependency_job_id":null,"html_url":"https://github.com/MinChatHQ/react-chat-ui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MinChatHQ/react-chat-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinChatHQ%2Freact-chat-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinChatHQ%2Freact-chat-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinChatHQ%2Freact-chat-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinChatHQ%2Freact-chat-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MinChatHQ","download_url":"https://codeload.github.com/MinChatHQ/react-chat-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinChatHQ%2Freact-chat-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272805302,"owners_count":24995909,"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-30T02:00:09.474Z","response_time":77,"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":["chat","communication","components","library","react","reactjs","social","ui"],"created_at":"2024-09-03T00:01:51.670Z","updated_at":"2025-08-30T04:31:23.521Z","avatar_url":"https://github.com/MinChatHQ.png","language":"HTML","funding_links":[],"categories":["TypeScript","UI components"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://img.shields.io/github/license/minchathq/react-chat-ui\"/\u003e\n\u003cimg src=\"https://img.shields.io/npm/v/@minchat/react-chat-ui\"/\u003e\n\u003cimg src=\"https://img.shields.io/twitter/follow/minchathq?style=social\"/\u003e\n\u003c/p\u003e\n\n## Overview\n\nBuild your own chat UI with React components in just a few minutes using the **React Chat UI Kit from MinChat**. Our open-source toolkit accelerates the development of web chat applications with a flexible and powerful set of components.\n\n**React Chat UI makes chat UI development faster**\n\n### Why Choose MinChat's React Chat UI?\n\n- **Speed up development**: Quickly integrate chat functionality into your app.\n- **Customizable components**: Tailor the UI to fit your needs.\n- **Open Source**: Benefit from community-driven improvements.\n\n# Demo\n\n[View Live Demo](https://minchat.io/demo)\nIf you would like to see the React chat UI in action, you can visit the [live demo](https://minchat.io/demo).\nThis demo allows you to test out the various features of the react chat components and see how it can be\nintegrated into a real-world application. We encourage you to give it a try and see for yourself the power\nand flexibility of our chat UI.\n\n# Documentation\n\nYou can view detailed documentation [here](https://react.minchat.io)\n\n# Install\n\nInstall the component library using your preferred package manager:\n\n**Using npm.**\n\n```bash\nnpm install @minchat/react-chat-ui\n```\n\n**Using yarn.**\n\n```bash\nyarn add @minchat/react-chat-ui\n```\n\n# Usage\n\nHere's a quick example to get you started:\n\n```jsx\nimport {\n  MinChatUiProvider,\n  MainContainer,\n  MessageInput,\n  MessageContainer,\n  MessageList,\n  MessageHeader\n} from \"@minchat/react-chat-ui\";\nfunction App() {\n  return (\n    \u003cMinChatUiProvider theme=\"#6ea9d7\"\u003e\n      \u003cMainContainer style={{ height: '100vh' }}\u003e\n        \u003cMessageContainer\u003e\n          \u003cMessageHeader /\u003e\n          \u003cMessageList\n            currentUserId='dan'\n            messages={[{\n              text: 'Hello',\n              user: {\n                id: 'mark',\n                name: 'Markus',\n              },\n            }]}\n          /\u003e\n          \u003cMessageInput placeholder=\"Type message here\" /\u003e\n        \u003c/MessageContainer\u003e\n      \u003c/MainContainer\u003e\n    \u003c/MinChatUiProvider\u003e\n  )\n}\n\nexport default App\n\n\n```\n\n# Modify Component Colors\n\nYou can modify the colors of each and every component, by passing a colorSet prop to the `MinChatUiProvider` which defines the colors to use. ommited colors will use the default theme.\n\n```jsx\nconst myColorSet = {\n        // input\n        \"--input-background-color\": \"#FF0000\",\n        \"--input-text-color\": \"#fff\",\n        \"--input-element-color\": \"rgb(0, 0, 255)\",\n        \"--input-attach-color\": \"#fff\",\n        \"--input-send-color\": \"#fff\",\n        \"--input-placeholder-color\": \"rgb(255, 255, 255)\",\n\n        // message header\n        \"--message-header-background-color\": \"#FF0000\",\n        \"--message-header-text-color\": \"#fff\",\n        \"--message-header-last-active-color\": \"rgb(0, 0, 255)\",\n        \"--message-header-back-color\": \"rgb(255, 255, 255)\",\n\n        // chat list header\n        \"--chatlist-header-background-color\": \"#FF0000\",\n        \"--chatlist-header-text-color\": \"rgb(255, 255, 255)\",\n        \"--chatlist-header-divider-color\": \"rgb(0, 128, 0)\",\n\n        //chatlist\n        \"--chatlist-background-color\": \"rgb(255, 192, 203)\",\n        \"--no-conversation-text-color\": \"rgb(255, 255, 255)\",\n\n        //chat item\n        \"--chatitem-background-color\": \"rgb(0, 0, 255)\",\n        \"--chatitem-selected-background-color\": \"rgb(255, 255, 0)\",\n        \"--chatitem-title-text-color\": \"#FF0000\",\n        \"--chatitem-content-text-color\": \"#FF0000\",\n        \"--chatitem-hover-color\": \"#FF0000\",\n\n        //main container\n        \"--container-background-color\": \"rgb(255, 192, 203)\",\n\n        //loader\n        \"--loader-color\": \"rgb(0, 128, 0)\",\n\n        //message list\n        \"--messagelist-background-color\": \"rgb(0, 0, 255)\",\n        \"--no-message-text-color\": \"rgb(255, 255, 255)\",\n\n        // incoming message\n        \"--incoming-message-text-color\": \"rgb(255, 255, 255)\",\n        \"--incoming-message-name-text-color\": \"rgb(255, 255, 255)\",\n        \"--incoming-message-background-color\": \"rgb(0, 128, 0)\",\n        \"--incoming-message-timestamp-color\": \"rgb(255, 255, 255)\",\n        \"--incoming-message-link-color\": \"#FF0000\",\n        \n        //outgoing message\n        \"--outgoing-message-text-color\": \"#FF0000\",\n        \"--outgoing-message-background-color\": \"rgb(255, 255, 0)\",\n        \"--outgoing-message-timestamp-color\": \"#FF0000\",\n        \"--outgoing-message-checkmark-color\": \"#FF0000\",\n        \"--outgoing-message-loader-color\": \"#FF0000\",\n        \"--outgoing-message-link-color\": \"rgb(0, 128, 0)\",\n    }\n\nfunction App() {\n  return (\n    \u003cMinChatUiProvider \n      colorSet={myColorSet}\n      theme=\"#6ea9d7\"\u003e\n\n       {/** rest of your code*/}\n\n    \u003c/MinChatUiProvider\u003e\n  )\n}\n```\n\n# Typescript\n\nOur library is written in TypeScript, offering type safety and easy integration into both TypeScript and JavaScript projects.\n\n# Show your support\nIf you love our library, consider starring ⭐ our GitHub repository!\n\n# Community and support\nFor articles, tutorials, and a full guide, visit our  [website](https://minchat.io/blog). Connect with other developers, share ideas, and get help.\n\n# Website\n\n[https://minchat.io](https://minchat.io)\n\nUnleash the power of seamless chat functionality with MinChat's [React Chat API!](https://minchat.io) Say goodbye to backend worries and hello to effortless integration. Get started today and save months of development time. Build a full-fledged React chat application in just minutes, not months!\n\n# License\n\nReact Chat UI Kit is licensed under [MIT](https://github.com/MinChatHQ/react-chat-ui/blob/master/LICENSE). Feel free to use it in your projects.\n\n---\n\nReady to build an amazing chat experience? Visit MinChat.io to get started and unleash the power of seamless chat functionality in your application today!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMinChatHQ%2Freact-chat-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMinChatHQ%2Freact-chat-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMinChatHQ%2Freact-chat-ui/lists"}