Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/react-guide/redux-tutorial-cn
Redux Tutorial 中文翻译
https://github.com/react-guide/redux-tutorial-cn
Last synced: 3 months ago
JSON representation
Redux Tutorial 中文翻译
- Host: GitHub
- URL: https://github.com/react-guide/redux-tutorial-cn
- Owner: react-guide
- Created: 2016-02-18T04:17:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-25T08:17:14.000Z (over 5 years ago)
- Last Synced: 2024-06-20T22:05:57.047Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 115 KB
- Stars: 1,920
- Watchers: 71
- Forks: 299
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-star - redux-tutorial-cn - guide | 1927 | (JavaScript)
README
redux-tutorial
=========================> 本文档正在翻译中,欢迎认领 [Issue](https://github.com/react-guide/redux-tutorial-cn/issues),和我们一起完善。
> 英文原版:https://github.com/happypoulp/redux-tutorial/这是一个很简短的教程,可以让你领略 Flux 和 [Redux](https://github.com/reactjs/redux) 思想的精髓。
当你初次接触 Redux 时,[Redux 官方文档](https://github.com/camsong/redux-in-chinese)极其详尽,是你的首选。本教程不同点是,通过介绍 Redux 使用来向你展示 Flux 概念。如果你想了解更多细节,请参谋 Redux 官方文档。
### 准备
为了理解本项目中的示例代码,你需要了解一些 ES6,ES7(Object Spread)特性。同时本教程只针对 Redux 3.0.2 和 react-redux 4.0.0。
### 克隆项目
`git clone https://github.com/react-guide/redux-tutorial-cn.git`### 进入目录
`cd redux-tutorial-cn`### 安装依赖
`npm install`### 浏览教程
本教程按照阅读的先后顺序,把内容分为多个 JavaScript 文件。
从第一个章节开始:[简介](00_introduction.js)
### 运行示例
既然是真实的 JS 文件,你可以直接运行这些示例,来验证结果符合预期:
`npm run example 01_simple-action-creator.js`
开始享受吧!
**本文档翻译流程符合 [ETC 翻译规范](https://github.com/react-guide/ETC),欢迎你来一起完善**