{"id":13626505,"url":"https://github.com/estevanmaito/windmill-react-ui","last_synced_at":"2025-05-15T17:08:26.910Z","repository":{"id":39745788,"uuid":"274544109","full_name":"estevanmaito/windmill-react-ui","owner":"estevanmaito","description":"🧩 The component library for fast and accessible development of gorgeous interfaces.","archived":false,"fork":false,"pushed_at":"2024-01-03T03:34:54.000Z","size":2533,"stargazers_count":756,"open_issues_count":48,"forks_count":148,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-05-09T06:02:12.971Z","etag":null,"topics":["component-library","components","react","tailwindcss","windmill"],"latest_commit_sha":null,"homepage":"https://windmillui.com/react-ui","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/estevanmaito.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2020-06-24T01:16:15.000Z","updated_at":"2025-05-08T06:02:42.000Z","dependencies_parsed_at":"2024-01-14T07:17:45.684Z","dependency_job_id":"80b1f92a-c82b-4a24-b3a8-d78d113eff8d","html_url":"https://github.com/estevanmaito/windmill-react-ui","commit_stats":{"total_commits":156,"total_committers":3,"mean_commits":52.0,"dds":"0.012820512820512775","last_synced_commit":"fba3fb0cfae5fac52f195b03d3fc010084908256"},"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/estevanmaito%2Fwindmill-react-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/estevanmaito%2Fwindmill-react-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/estevanmaito%2Fwindmill-react-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/estevanmaito%2Fwindmill-react-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/estevanmaito","download_url":"https://codeload.github.com/estevanmaito/windmill-react-ui/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254384988,"owners_count":22062422,"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":["component-library","components","react","tailwindcss","windmill"],"created_at":"2024-08-01T21:02:20.744Z","updated_at":"2025-05-15T17:08:21.899Z","avatar_url":"https://github.com/estevanmaito.png","language":"TypeScript","readme":"# Windmill React UI\n\nThe component library for fast and accessible development of gorgeous interfaces.\n\n\u003cp\u003e\n  \u003ca href=\"https://codecov.io/gh/estevanmaito/windmill-react-ui\"\u003e\u003cimg src=\"https://codecov.io/gh/estevanmaito/windmill-react-ui/branch/master/graph/badge.svg\" alt=\"codecov\" /\u003e\u003c/a\u003e\n  \u003cimg src=\"https://github.com/estevanmaito/windmill-react-ui/workflows/Build/badge.svg\" alt=\"Build\" /\u003e\n  \u003ca href=\"https://www.npmjs.com/package/@windmill/react-ui\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/@windmill/react-ui\" alt=\"npm\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/estevanmaito/windmill-react-ui/blob/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/github/license/estevanmaito/windmill-react-ui\" alt=\"MIT License\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nProjects using it: [Windmill Dashboard React](https://github.com/estevanmaito/windmill-dashboard-react)\n\n## Mission\n\nBe the most accessible it can be out of the box and the fastest way to production.\n\n[Go to docs to see complete, live examples](https://windmillui.com/react-ui)\n\n## 🚀 Usage\n\nInstall\n\n```sh\nnpm i @windmill/react-ui\n```\n\nInside `tailwind.config.js`\n\n```js\nconst windmill = require('@windmill/react-ui/config')\nmodule.exports = windmill({\n  purge: [],\n  theme: {\n    extend: {},\n  },\n  variants: {},\n  plugins: [],\n})\n```\n\nThen place `Windmill` at the root of your project (the order doesn't matter, as long as your application is inside).\n\n```js\n// index.js\nimport React from 'react'\nimport ReactDOM from 'react-dom'\nimport App from './App'\nimport { Windmill } from '@windmill/react-ui'\n\nReactDOM.render(\n  \u003cWindmill\u003e\n    \u003cApp /\u003e\n  \u003c/Windmill\u003e,\n  document.getElementById('root')\n)\n```\n\nUse components inside your project\n\n```js\nimport { Button } from '@windmill/react-ui'\n\nfunction App() {\n  return \u003cButton\u003eHi there!\u003c/Button\u003e\n}\n\nexport default App\n```\n\n## 🔌 Contributing\n\n- Fork\n- Clone\n- `npm install`\n- `npm run storybook`\n\nIt will start a local server at `localhost:6006` with all components rendered.\n\n⚠ Use `npm run cz` instead of `git commit`! It will guide you through some short questions and guarantee that you commit message is standardized.\n\nCommit will also trigger linting and test coverage.\n","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Festevanmaito%2Fwindmill-react-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Festevanmaito%2Fwindmill-react-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Festevanmaito%2Fwindmill-react-ui/lists"}