{"id":15011157,"url":"https://github.com/fengxinhhh/concis","last_synced_at":"2025-04-07T05:07:54.483Z","repository":{"id":37552989,"uuid":"474078719","full_name":"fengxinhhh/Concis","owner":"fengxinhhh","description":"快速构建React应用程序的高性能、轻量级UI库","archived":false,"fork":false,"pushed_at":"2024-09-13T07:33:39.000Z","size":9617,"stargazers_count":390,"open_issues_count":9,"forks_count":113,"subscribers_count":16,"default_branch":"master","last_synced_at":"2024-10-30T08:17:59.531Z","etag":null,"topics":["css3","dumi","es6-javascript","javascript","js","lerna","less","markdown","mobile","pnpm","react","react-components","reactjs","rollup","ts","typescript"],"latest_commit_sha":null,"homepage":"http://concis.org.cn","language":"TypeScript","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/fengxinhhh.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}},"created_at":"2022-03-25T16:09:30.000Z","updated_at":"2024-10-26T00:04:42.000Z","dependencies_parsed_at":"2024-01-14T03:00:10.285Z","dependency_job_id":"3dd4c78a-6c91-4a8d-b558-1726e37b39c8","html_url":"https://github.com/fengxinhhh/Concis","commit_stats":{"total_commits":518,"total_committers":32,"mean_commits":16.1875,"dds":"0.21621621621621623","last_synced_commit":"eff5332d0c4f5dbb3d4d1f61e5f5e6ffe067bfc2"},"previous_names":[],"tags_count":65,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fengxinhhh%2FConcis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fengxinhhh%2FConcis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fengxinhhh%2FConcis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fengxinhhh%2FConcis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fengxinhhh","download_url":"https://codeload.github.com/fengxinhhh/Concis/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247595334,"owners_count":20963943,"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","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":["css3","dumi","es6-javascript","javascript","js","lerna","less","markdown","mobile","pnpm","react","react-components","reactjs","rollup","ts","typescript"],"created_at":"2024-09-24T19:39:20.338Z","updated_at":"2025-04-07T05:07:54.289Z","avatar_url":"https://github.com/fengxinhhh.png","language":"TypeScript","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://concis.org.cn\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Concis Logo\" width=\"200\" src=\"https://concis.org.cn/images/concis-logo.png\"/\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eConcis\u003c/h1\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n\nHigh-performance, lightweight UI library for rapidly building React applications.\n\n\u003cimg src=\"https://img.shields.io/github/stars/fengxinhhh/concis\" alt=\"stars\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/react-v18.2.0%2B-%23407fbc\" alt=\"react\"\u003e\n\u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\" alt=\"licence\"\u003e\n\u003cimg src=\"https://github.com/fengxinhhh/concis/workflows/CI/badge.svg\" alt=\"ci\"\u003e\n\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n\nEnglish | [简体中文](./README.zh-CN.md)\n\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://concis.org.cn/images/index-bg.jpg\" width=\"1200\" /\u003e\n\u003c/div\u003e\n\n# Features\n\n## Comprehensive\n\nWith more than 50 crafted components that you can use out of the box.\n\n## Customizable theme\n\nExtensive design tokens can be customized to build your own theme. the way of customization are supported:\n\n- [With colors-system](https://concis.org.cn/#/guide/xcolor)\n- [Dark mode \u0026 theme color dual support](https://concis.org.cn/#/guide/udark)\n\n## TypeScript friendly\n\nAll components are written in TypeScript so it's type friendly.\n\n# Installation\n\nAvailable as an [npm package](https://www.npmjs.com/package/concis)\n\n```bash\n// with npm\nnpm install concis@latest\n\n// with yarn\nyarn add concis@latest\n```\n\n# Examples\n\n```typescript\nimport React from 'react';\nimport ReactDOM from 'react-dom';\nimport { Button } from 'concis';\nimport 'concis/web-react/style/index.css';\n\nfunction App() {\n  return \u003cButton type=\"primary\"\u003eHello Concis!\u003c/Button\u003e;\n}\n\nReactDOM.render(\u003cApp /\u003e, document.getElementById('app'));\n```\n\n# Local experience\n\nIn the examples folder, there is a `vite` + `react` project runtime environment, in which you can experience the `concis` component, run the command in the project root directory:\n\n```tsx pure\npnpm examples:dev\n```\n\nVisit `http://localhost:5173`.\n\n\u003cimg src=\"https://concis.org.cn/images/examplepic.jpeg\" /\u003e\n\n\u003cimg src=\"https://concis.org.cn/images/example-darkpic.jpeg\" /\u003e\n\n# Useful Links\n\n- [Documentation website](https://concis.org.cn/#/)\n- [Components documentation](https://concis.org.cn/#/common/button)\n- [Guide introduce](https://concis.org.cn/#/guide/introduce)\n- [Get started quickly](https://concis.org.cn/#/guide/teuse)\n\n# Browser Support\n\n| [\u003cimg src=\"https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/08095282566ac4e0fd98f89aed934b65.png~tplv-uwbnlip3yd-png.png\" alt=\"IE / Edge\" width=\"24px\" height=\"24px\" /\u003e](http://godban.github.io/browsers-support-badges/)\u003cbr/\u003eIE / Edge | [\u003cimg src=\"https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/40ad73571879dd8d9fd3fd524e0e45a4.png~tplv-uwbnlip3yd-png.png\" alt=\"Firefox\" width=\"24px\" height=\"24px\" /\u003e](http://godban.github.io/browsers-support-badges/)\u003cbr/\u003eFirefox | [\u003cimg src=\"https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/4f59d35f6d6837b042c8badd95871b1d.png~tplv-uwbnlip3yd-png.png\" alt=\"Chrome\" width=\"24px\" height=\"24px\" /\u003e](http://godban.github.io/browsers-support-badges/)\u003cbr/\u003eChrome | [\u003cimg src=\"https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/eee2667f837a9c2ed531805850bf43ec.png~tplv-uwbnlip3yd-png.png\" alt=\"Safari\" width=\"24px\" height=\"24px\" /\u003e](http://godban.github.io/browsers-support-badges/)\u003cbr/\u003eSafari | [\u003cimg src=\"https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/3240334d3967dd263c8f4cdd2d93c525.png~tplv-uwbnlip3yd-png.png\" alt=\"Opera\" width=\"24px\" height=\"24px\" /\u003e](http://godban.github.io/browsers-support-badges/)\u003cbr/\u003eOpera | [\u003cimg src=\"https://p1-arco.byteimg.com/tos-cn-i-uwbnlip3yd/f2454685df95a1a557a61861c5bec256.png~tplv-uwbnlip3yd-png.png\" alt=\"Electron\" width=\"24px\" height=\"24px\" /\u003e](http://godban.github.io/browsers-support-badges/)\u003cbr/\u003eElectron |\n| --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| Edge 16                                                                                                                                                                                                                                 | 31                                                                                                                                                                                                                                  | 49                                                                                                                                                                                                                                | 31                                                                                                                                                                                                                                | 36                                                                                                                                                                                                                              | last 2 versions                                                                                                                                                                                                                       |\n\n# Contributing\n\nDevelopers interested in contributing should read the [Contributing Guide](https://concis.org.cn/#/guide/zcontribute).\n\nThank you to all the people who already contributed to Concis!\n\n\u003ca href=\"https://github.com/fengxinhhh/concis/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=fengxinhhh/concis\" /\u003e\n\u003c/a\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffengxinhhh%2Fconcis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffengxinhhh%2Fconcis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffengxinhhh%2Fconcis/lists"}