Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nefe/redux-in-chinese
Redux 中文文档
https://github.com/nefe/redux-in-chinese
react redux tutorial
Last synced: 22 days ago
JSON representation
Redux 中文文档
- Host: GitHub
- URL: https://github.com/nefe/redux-in-chinese
- Owner: nefe
- Created: 2015-08-10T01:57:51.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T16:14:21.000Z (5 months ago)
- Last Synced: 2024-08-02T08:07:41.033Z (3 months ago)
- Topics: react, redux, tutorial
- Language: JavaScript
- Homepage: https://cn.redux.js.org/
- Size: 110 MB
- Stars: 3,472
- Watchers: 122
- Forks: 659
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Build Status](https://travis-ci.org/camsong/redux-in-chinese.svg?branch=master)](https://travis-ci.org/camsong/redux-in-chinese)
➡️在线文档地址:https://cn.redux.js.org/
Redux 是 JavaScript 状态容器,提供可预测化的状态管理。
(如果你需要一个 WordPress 框架,请查看 [Redux Framework](https://reduxframework.com/)。)可以让你构建一致化的应用,运行于不同的环境(客户端、服务器、原生应用),并且易于测试。不仅于此,它还提供
超爽的开发体验,比如有一个[时间旅行调试器可以编辑后实时预览](https://github.com/reduxjs/redux-devtools)。Redux 除了和 [React](https://facebook.github.io/react/) 一起用外,还支持其它界面库。
它体小精悍(只有 2kB,包括依赖)。## 安装
Redux Toolkit 是官方推荐的编写 Redux 逻辑的方法。 它围绕着 Redux core,包含我们认为构建 Redux 应用程序必不可少的包和函数。Redux Toolkit 基于我们建议的最佳实践来开发,简化了大多数 Redux 任务,防止了常见错误,并使编写 Redux 应用程序变得更加容易。```
npm install @reduxjs/toolkit react-redux
```只安装 Redux core
```
npm install redux
```更多信息,访问 [安装文档](https://cn.redux.js.org/introduction/installation/)
## 文档
- [入门](https://cn.redux.js.org/introduction/getting-started)
- [教程](https://cn.redux.js.org/tutorials/index)
- [使用引导](https://cn.redux.js.org/usage/)
- [常见问题](https://cn.redux.js.org/faq)
- [API 文档](https://cn.redux.js.org/api/api-reference)## 借鉴
Redux 改进了 [Flux](https://facebook.github.io/flux/) 的思想,但通过从 [Elm](https://github.com/evancz/elm-architecture-tutorial/) 中汲取灵感来避免其复杂性。即使您没有使用过 Flux 或 Elm,Redux 也只需几分钟即可上手。
## Logo
官方 Logo [在 Github 上可以找到](https://github.com/reduxjs/redux/tree/master/logo)。
## 重要里程碑
### 4.x 里程碑:
2022.10.1 全面完成 4.x 官方文档的翻译和校验,特别感谢以下贡献者的辛勤付出:
* [HuiFei](https://github.com/guanwanxiao)
* [Gonson International](https://github.com/GonsonInter)
* [雨季sky](https://github.com/yujidxl)
* [Flora](https://github.com/Flora-wyy)
* [hellocathi](https://github.com/hellocathi)
* [Healer](https://github.com/zxb-hub)
* [izeal77](https://github.com/izeal77)## 贡献者
在线链接:https://github.com/nefe/redux-in-chinese/graphs/contributors
**本文档翻译流程符合 [ETC 翻译规范](https://github.com/react-guide/ETC),欢迎你来一起完善**
## License
MIT