{"id":13494424,"url":"https://github.com/nefe/redux-in-chinese","last_synced_at":"2025-05-14T13:03:21.213Z","repository":{"id":36154024,"uuid":"40458061","full_name":"nefe/redux-in-chinese","owner":"nefe","description":"Redux 中文文档","archived":false,"fork":false,"pushed_at":"2024-06-20T16:14:21.000Z","size":115395,"stargazers_count":3473,"open_issues_count":11,"forks_count":654,"subscribers_count":121,"default_branch":"master","last_synced_at":"2025-04-27T01:16:36.735Z","etag":null,"topics":["react","redux","tutorial"],"latest_commit_sha":null,"homepage":"https://cn.redux.js.org/","language":"JavaScript","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/nefe.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":"2015-08-10T01:57:51.000Z","updated_at":"2025-04-25T14:25:08.000Z","dependencies_parsed_at":"2024-03-17T05:42:16.745Z","dependency_job_id":"72688401-92df-4123-9de2-4c35a2f7c6d8","html_url":"https://github.com/nefe/redux-in-chinese","commit_stats":{"total_commits":644,"total_committers":156,"mean_commits":4.128205128205129,"dds":0.7624223602484472,"last_synced_commit":"4bb9166a16fc7e2b418b1a28444c058d7496d88f"},"previous_names":["camsong/redux-in-chinese"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nefe%2Fredux-in-chinese","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nefe%2Fredux-in-chinese/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nefe%2Fredux-in-chinese/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nefe%2Fredux-in-chinese/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nefe","download_url":"https://codeload.github.com/nefe/redux-in-chinese/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251235405,"owners_count":21556942,"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":["react","redux","tutorial"],"created_at":"2024-07-31T19:01:24.952Z","updated_at":"2025-05-14T13:03:20.402Z","avatar_url":"https://github.com/nefe.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# [Redux 中文文档](http://github.com/camsong/redux-in-chinese) [![Join the chat at https://gitter.im/camsong/redux-in-chinese](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/camsong/redux-in-chinese?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge) [![Build Status](https://travis-ci.org/camsong/redux-in-chinese.svg?branch=master)](https://travis-ci.org/camsong/redux-in-chinese)\n\n\u003cimg src='https://camo.githubusercontent.com/f28b5bc7822f1b7bb28a96d8d09e7d79169248fc/687474703a2f2f692e696d6775722e636f6d2f4a65567164514d2e706e67' height='60'\u003e\n\n➡️在线文档地址：https://cn.redux.js.org/\n\nRedux 是 JavaScript 状态容器，提供可预测化的状态管理。\n(如果你需要一个 WordPress 框架，请查看 [Redux Framework](https://reduxframework.com/)。)\n\n可以让你构建一致化的应用，运行于不同的环境（客户端、服务器、原生应用），并且易于测试。不仅于此，它还提供\n超爽的开发体验，比如有一个[时间旅行调试器可以编辑后实时预览](https://github.com/reduxjs/redux-devtools)。\n\nRedux 除了和 [React](https://facebook.github.io/react/) 一起用外，还支持其它界面库。\n它体小精悍（只有 2kB，包括依赖）。\n\n## 安装\nRedux Toolkit 是官方推荐的编写 Redux 逻辑的方法。 它围绕着 Redux core，包含我们认为构建 Redux 应用程序必不可少的包和函数。Redux Toolkit 基于我们建议的最佳实践来开发，简化了大多数 Redux 任务，防止了常见错误，并使编写 Redux 应用程序变得更加容易。\n\n```\nnpm install @reduxjs/toolkit react-redux\n```\n\n只安装 Redux core\n\n```\nnpm install redux\n```\n\n更多信息，访问 [安装文档](https://cn.redux.js.org/introduction/installation/)\n\n## 文档\n\n- [入门](https://cn.redux.js.org/introduction/getting-started)\n- [教程](https://cn.redux.js.org/tutorials/index)\n- [使用引导](https://cn.redux.js.org/usage/)\n- [常见问题](https://cn.redux.js.org/faq)\n- [API 文档](https://cn.redux.js.org/api/api-reference)\n\n\n## 借鉴\n\nRedux 改进了 [Flux](https://facebook.github.io/flux/) 的思想，但通过从 [Elm](https://github.com/evancz/elm-architecture-tutorial/) 中汲取灵感来避免其复杂性。即使您没有使用过 Flux 或 Elm，Redux 也只需几分钟即可上手。\n\n## Logo\n\n官方 Logo [在 Github 上可以找到](https://github.com/reduxjs/redux/tree/master/logo)。\n\n## 重要里程碑\n\n### 4.x 里程碑：\n\n2022.10.1 全面完成 4.x 官方文档的翻译和校验，特别感谢以下贡献者的辛勤付出：\n\n* [HuiFei](https://github.com/guanwanxiao)\n* [Gonson International](https://github.com/GonsonInter)\n* [雨季sky](https://github.com/yujidxl)\n* [Flora](https://github.com/Flora-wyy)\n* [hellocathi](https://github.com/hellocathi)\n* [Healer](https://github.com/zxb-hub)\n* [izeal77](https://github.com/izeal77)\n\n## 贡献者\n\n在线链接：https://github.com/nefe/redux-in-chinese/graphs/contributors\n\n所有贡献者列表\n\u003ca href=\"https://github.com/camsong/redux-in-chinese/graphs/contributors\"\u003e\u003cimg src=\"https://opencollective.com/redux-in-chinese/contributors.svg?width=890\u0026button=false\" /\u003e\u003c/a\u003e\n\n**本文档翻译流程符合 [ETC 翻译规范](https://github.com/react-guide/ETC)，欢迎你来一起完善**\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnefe%2Fredux-in-chinese","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnefe%2Fredux-in-chinese","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnefe%2Fredux-in-chinese/lists"}