{"id":22528694,"url":"https://github.com/evandhq/react-jupiter","last_synced_at":"2026-03-10T01:02:23.526Z","repository":{"id":35093455,"uuid":"204682222","full_name":"evandhq/react-jupiter","owner":"evandhq","description":"An UI design language with React implementation","archived":false,"fork":false,"pushed_at":"2025-10-14T19:44:30.000Z","size":17600,"stargazers_count":0,"open_issues_count":14,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-11-16T01:09:16.729Z","etag":null,"topics":["design-system","framework","react","reactjs"],"latest_commit_sha":null,"homepage":"https://evandhq.github.io/react-jupiter/","language":"JavaScript","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/evandhq.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}},"created_at":"2019-08-27T10:47:35.000Z","updated_at":"2025-10-14T19:44:34.000Z","dependencies_parsed_at":"2023-07-17T06:33:19.730Z","dependency_job_id":"edcda571-d485-4d53-9427-10098c5b5506","html_url":"https://github.com/evandhq/react-jupiter","commit_stats":null,"previous_names":["evandhq/react-design-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/evandhq/react-jupiter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evandhq%2Freact-jupiter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evandhq%2Freact-jupiter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evandhq%2Freact-jupiter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evandhq%2Freact-jupiter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evandhq","download_url":"https://codeload.github.com/evandhq/react-jupiter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evandhq%2Freact-jupiter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28740400,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"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":["design-system","framework","react","reactjs"],"created_at":"2024-12-07T07:12:02.599Z","updated_at":"2026-01-25T01:03:04.052Z","avatar_url":"https://github.com/evandhq.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://evand.com\"\u003e\n    \u003cimg width=\"200\" src=\"https://blog.evand.com/wp-content/themes/evand/assets/evand.png\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003ca href=\"https://evandhq.github.io/react-jupiter\"\u003e\n    \u003ch1 align=\"center\"\u003e\n      Evand Design System - react-jupiter\n    \u003c/h1\u003e\n  \u003c/a\u003e\n\n## An UI design language with React implementation\n\n### 🔱 __Features__\n\n- An enterprise UI design system for web applications.\n- A set of high-quality React components.\n- Written in ES6 and styled-components.\n- Use [react-hook-form](https://github.com/react-hook-form/react-hook-form) for form handling\n\n### 📦 __Install__\n\n```bash\n  npm install --save react-jupiter\n```\n\nor\n\n```bash\n  yarn add react-jupiter\n```\n\n### 🙌🏼 __Usage__\n\n```jsx\n  import { Button } from 'react-jupiter';\n\n  ReactDOM.render(\u003cButton\u003eSubmit\u003c/Button\u003e, mountNode);\n```\n\n### 🛠 __Development__\n\nUse Gitpod, a free online dev environment for GitHub.\n\n[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/evandhq/react-design-system)\n\nOr clone locally:\n\n```bash\n  git clone https://github.com/evandhq/react-design-system.git\n  cd react-design-system\n  npm install\n  npm start\n```\n\n### ⬛️ __Commands__\n\n_start development and view doc. Open your browser and visit \u003chttp://127.0.0.1:3000\u003e_\n\n```bash\n  npm start\n```\n\n_show stories of storybook. Open your browser and visit \u003chttp://127.0.0.1:9009:\u003e_\n\n```bash\n  npm run storybook\n```\n\n_running all tests:_\n\n```bash\n  npm run test\n```\n\n_show linter errors (linter prevent changes to commit):_\n\n```bash\n  npm run lint\n```\n\n_fix linter errors automatically:_\n\n```bash\n  npm run lint:fix\n```\n\n_create changelog:_\n\n```bash\n  npm run version\n```\n\n_generate static site of storybook:_\n\n```bash\n  npm run build:storybook\n```\n\n_build production of documents and samples:_\n\n```bash\n  npm run build:doc\n```\n\n_build version of design system:_\n\n```bash\n  npm run build:lib\n```\n\n_deploy updated storybook on [project's github gh-page](https://evandhq.github.io/react-jupiter/) :_\n\n```bash\n  npm run deploy:storybook\n```\n\n### 🤝 __Contributing__ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n\nRead our [contributing guide](https://evand.com) and let's build a better react design system.\n\n### 🎓 __Licence__\n\n_react design system_ is available under MIT licence.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevandhq%2Freact-jupiter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevandhq%2Freact-jupiter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevandhq%2Freact-jupiter/lists"}