首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

redux-4.0.4.zip

前端 2.12MB 5 需要积分: 1
立即下载

资源介绍:

一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
# Redux Logo Redux is a predictable state container for JavaScript apps. (Not to be confused with a WordPress framework – [Redux Framework](https://reduxframework.com/).) It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. On top of that, it provides a great developer experience, such as [live code editing combined with a time traveling debugger](https://github.com/reduxjs/redux-devtools). You can use Redux together with [React](https://reactjs.org), or with any other view library. It is tiny (2kB, including dependencies). > **Note**: We are currently planning a rewrite of the Redux docs. Please take some time to **[fill out this survey on what content is most important in a docs site](https://docs.google.com/forms/d/e/1FAIpQLSfzIkY3fXZ8PrQKScYMK0YoEgALfAK2qQ0mOj1_ibKv2qDTuQ/viewform)**. Thanks! [![build status](https://img.shields.io/travis/reduxjs/redux/master.svg?style=flat-square)](https://travis-ci.org/reduxjs/redux) [![npm version](https://img.shields.io/npm/v/redux.svg?style=flat-square)](https://www.npmjs.com/package/redux) [![npm downloads](https://img.shields.io/npm/dm/redux.svg?style=flat-square)](https://www.npmjs.com/package/redux) [![redux channel on discord](https://img.shields.io/badge/discord-%23redux%20%40%20reactiflux-61dafb.svg?style=flat-square)](https://discord.gg/0ZcbPKXt5bZ6au5t) [![Changelog #187](https://img.shields.io/badge/changelog-%23187-lightgrey.svg?style=flat-square)](https://changelog.com/187) ## Learn Redux We have a variety of resources available to help you learn Redux, no matter what your background or learning style is. ### Just the Basics If you're brand new to Redux and want to understand the basic concepts, see: - The **[Motivation](https://redux.js.org/introduction/motivation)** behind building Redux, the **[Core Concepts](https://redux.js.org/introduction/coreconcepts)**, and the **[Three Principles](https://redux.js.org/introduction/threeprinciples)**. - The **[basic tutorial in the Redux docs](https://redux.js.org/basics)** - Redux creator Dan Abramov's **free ["Getting Started with Redux" video series](https://egghead.io/series/getting-started-with-redux)** on Egghead.io - Redux co-maintainer Mark Erikson's **["Redux Fundamentals" slideshow](http://blog.isquaredsoftware.com/2018/03/presentation-reactathon-redux-fundamentals/)** and **[list of suggested resources for learning Redux](http://blog.isquaredsoftware.com/2017/12/blogged-answers-learn-redux/)** - If you learn best by looking at code and playing with it, check out our list of **[Redux example applications](https://redux.js.org/introduction/examples)**, available as separate projects in the Redux repo, and also as interactive online examples on CodeSandbox. - The **[Redux Tutorials](https://github.com/markerikson/react-redux-links/blob/master/redux-tutorials.md)** section of the **[React/Redux links list](https://github.com/markerikson/react-redux-links)**. Here's a top list of our recommended tutorials: - Dave Ceddia's posts [What Does Redux Do? (and when should you use it?)](https://daveceddia.com/what-does-redux-do/) and [How Redux Works: A Counter-Example](https://daveceddia.com/how-does-redux-work/) are a great intro to the basics of Redux and how to use it with React, as is this post on [React and Redux: An Introduction](http://jakesidsmith.com/blog/post/2017-11-18-redux-and-react-an-introduction/). - Valentino Gagliardi's post [React Redux Tutorial for Beginners: Learning Redux in 2018](https://www.valentinog.com/blog/react-redux-tutorial-beginners/) is an excellent extended introduction to many aspects of using Redux. - The CSS Tricks article [Leveling Up with React: Redux](https://css-tricks.com/learning-react-redux/) covers the Redux basics well. - This [DevGuides: Introduction to Redux](http://devguides.io/redux/) tutorial covers several aspects of Redux, including actions, reducers, usage with React, and middleware. ### Intermediate Concepts Once you've picked up the basics of working with actions, reducers, and the store, you may have questions about topics like working with asynchronous logic and AJAX requests, connecting a UI framework like React to your Redux store, and setting up an application to use Redux: - The **["Advanced" docs section](https://redux.js.org/advanced)** covers working with async logic, middleware, routing. - The Redux docs **["Learning Resources"](https://redux.js.org/introduction/learning-resources)** page points to recommended articles on a variety of Redux-related topics. - Sophie DeBenedetto's 8-part **[Building a Simple CRUD App with React + Redux](http://www.thegreatcodeadventure.com/building-a-simple-crud-app-with-react-redux-part-1/)** series shows how to put together a basic CRUD app from scratch. ### Real-World Usage Going from a TodoMVC app to a real production application can be a big jump, but we've got plenty of resources to help: - Redux creator Dan Abramov's **[free "Building React Applications with Idiomatic Redux" video series](https://egghead.io/courses/building-react-applications-with-idiomatic-redux)** builds on his first video series and covers topics like middleware, routing, and persistence. - The **[Redux FAQ](https://redux.js.org/faq)** answers many common questions about how to use Redux, and the **["Recipes" docs section](https://redux.js.org/recipes)** has information on handling derived data, testing, structuring reducer logic, and reducing boilerplate. - Redux co-maintainer Mark Erikson's **["Practical Redux" tutorial series](http://blog.isquaredsoftware.com/series/practical-redux/)** demonstrates real-world intermediate and advanced techniques for working with React and Redux (also available as **[an interactive course on Educative.io](https://www.educative.io/collection/5687753853370368/5707702298738688)**). - The **[React/Redux links list](https://github.com/markerikson/react-redux-links)** has categorized articles on working with [reducers and selectors](https://github.com/markerikson/react-redux-links/blob/master/redux-reducers-selectors.md), [managing side effects](https://github.com/markerikson/react-redux-links/blob/master/redux-side-effects.md), [Redux architecture and best practices](https://github.com/markerikson/react-redux-links/blob/master/redux-architecture.md), and more. - Our community has created thousands of Redux-related libraries, addons, and tools. The **["Ecosystem" docs page](https://redux.js.org/introduction/ecosystem)** lists our recommendations, and there's a complete listing available in the **[Redux addons catalog](https://github.com/markerikson/redux-ecosystem-links)**. - If you're looking to learn from actual application codebases, the addons catalog also has a list of **[purpose-built examples and real-world applications](https://github.com/markerikson/redux-ecosystem-links/blob/master/apps-and-examples.md)**. Finally, Mark Erikson is teaching a series of **[Redux workshops through Workshop.me](#redux-workshops)**. Check the [workshop schedule](https://workshop.me/?a=mark) for upcoming dates and locations. ### Help and Discussion The **[#redux channel](https://discord.gg/0ZcbPKXt5bZ6au5t)** of the **[Reactiflux Discord community](http://www.reactiflux.com)** is our official resource for all questions related to learning and using Redux. Reactiflux is a great place to hang out, ask questions, and learn - come join us! ## Before Proceeding Further Redux is a valuable tool for organizing your state, but you should also consider whether it's appropriate for your situation. Don't use Redux just because someone said you should - take some time to understand the potential benefits and tradeoffs of using it.

资源文件列表:

redux-4.0.4.zip 大约有495个文件
  1. redux-4.0.4/
  2. redux-4.0.4/.babelrc.js 515B
  3. redux-4.0.4/.editorconfig 304B
  4. redux-4.0.4/.eslintignore 82B
  5. redux-4.0.4/.eslintrc.js 263B
  6. redux-4.0.4/.gitbook.yaml 57B
  7. redux-4.0.4/.github/
  8. redux-4.0.4/.github/ISSUE_TEMPLATE/
  9. redux-4.0.4/.github/ISSUE_TEMPLATE/Bug_report.md 772B
  10. redux-4.0.4/.github/ISSUE_TEMPLATE/Custom.md 370B
  11. redux-4.0.4/.gitignore 126B
  12. redux-4.0.4/.prettierrc.json 60B
  13. redux-4.0.4/.travis.yml 103B
  14. redux-4.0.4/CHANGELOG.md 225B
  15. redux-4.0.4/CNAME 13B
  16. redux-4.0.4/CODE_OF_CONDUCT.md 3.15KB
  17. redux-4.0.4/CONTRIBUTING.md 5.1KB
  18. redux-4.0.4/LICENSE-logo.md 6.84KB
  19. redux-4.0.4/LICENSE.md 1.06KB
  20. redux-4.0.4/PATRONS.md 801B
  21. redux-4.0.4/README.md 24.87KB
  22. redux-4.0.4/build/
  23. redux-4.0.4/build/gitbook.css 330B
  24. redux-4.0.4/docs/
  25. redux-4.0.4/docs/FAQ.md 8.53KB
  26. redux-4.0.4/docs/Feedback.md 504B
  27. redux-4.0.4/docs/Glossary.md 8.12KB
  28. redux-4.0.4/docs/README.md 3.45KB
  29. redux-4.0.4/docs/Troubleshooting.md 6.59KB
  30. redux-4.0.4/docs/advanced/
  31. redux-4.0.4/docs/advanced/AsyncActions.md 20.12KB
  32. redux-4.0.4/docs/advanced/AsyncFlow.md 1.53KB
  33. redux-4.0.4/docs/advanced/ExampleRedditAPI.md 7.84KB
  34. redux-4.0.4/docs/advanced/Middleware.md 17.13KB
  35. redux-4.0.4/docs/advanced/NextSteps.md 5.81KB
  36. redux-4.0.4/docs/advanced/README.md 541B
  37. redux-4.0.4/docs/advanced/UsageWithReactRouter.md 8.05KB
  38. redux-4.0.4/docs/api/
  39. redux-4.0.4/docs/api/README.md 1.35KB
  40. redux-4.0.4/docs/api/Store.md 8.52KB
  41. redux-4.0.4/docs/api/applyMiddleware.md 9.71KB
  42. redux-4.0.4/docs/api/bindActionCreators.md 4.16KB
  43. redux-4.0.4/docs/api/combineReducers.md 5.47KB
  44. redux-4.0.4/docs/api/compose.md 1.47KB
  45. redux-4.0.4/docs/api/createStore.md 3.21KB
  46. redux-4.0.4/docs/basics/
  47. redux-4.0.4/docs/basics/Actions.md 4.7KB
  48. redux-4.0.4/docs/basics/DataFlow.md 4.73KB
  49. redux-4.0.4/docs/basics/ExampleTodoList.md 6.43KB
  50. redux-4.0.4/docs/basics/README.md 600B
  51. redux-4.0.4/docs/basics/Reducers.md 15.09KB
  52. redux-4.0.4/docs/basics/Store.md 3.23KB
  53. redux-4.0.4/docs/basics/UsageWithReact.md 16.59KB
  54. redux-4.0.4/docs/faq/
  55. redux-4.0.4/docs/faq/Actions.md 14.84KB
  56. redux-4.0.4/docs/faq/CodeStructure.md 10.32KB
  57. redux-4.0.4/docs/faq/DesignDecisions.md 9.99KB
  58. redux-4.0.4/docs/faq/General.md 7.65KB
  59. redux-4.0.4/docs/faq/ImmutableData.md 27.11KB
  60. redux-4.0.4/docs/faq/Miscellaneous.md 2.93KB
  61. redux-4.0.4/docs/faq/OrganizingState.md 12.03KB
  62. redux-4.0.4/docs/faq/Performance.md 16.49KB
  63. redux-4.0.4/docs/faq/ReactRedux.md 13.72KB
  64. redux-4.0.4/docs/faq/Reducers.md 4.61KB
  65. redux-4.0.4/docs/faq/StoreSetup.md 7.01KB
  66. redux-4.0.4/docs/introduction/
  67. redux-4.0.4/docs/introduction/CoreConcepts.md 2.65KB
  68. redux-4.0.4/docs/introduction/Ecosystem.md 29.92KB
  69. redux-4.0.4/docs/introduction/Examples.md 9.59KB
  70. redux-4.0.4/docs/introduction/GettingStarted.md 13.69KB
  71. redux-4.0.4/docs/introduction/Installation.md 2.18KB
  72. redux-4.0.4/docs/introduction/LearningResources.md 24.71KB
  73. redux-4.0.4/docs/introduction/Motivation.md 2.37KB
  74. redux-4.0.4/docs/introduction/PriorArt.md 6.87KB
  75. redux-4.0.4/docs/introduction/README.md 248B
  76. redux-4.0.4/docs/introduction/ThreePrinciples.md 3.27KB
  77. redux-4.0.4/docs/recipes/
  78. redux-4.0.4/docs/recipes/CodeSplitting.md 6.02KB
  79. redux-4.0.4/docs/recipes/ComputingDerivedData.md 13.98KB
  80. redux-4.0.4/docs/recipes/ConfiguringYourStore.md 14.22KB
  81. redux-4.0.4/docs/recipes/ImplementingUndoHistory.md 15.65KB
  82. redux-4.0.4/docs/recipes/IsolatingSubapps.md 2.63KB
  83. redux-4.0.4/docs/recipes/MigratingToRedux.md 3.02KB
  84. redux-4.0.4/docs/recipes/README.md 965B
  85. redux-4.0.4/docs/recipes/ReducingBoilerplate.md 17.25KB
  86. redux-4.0.4/docs/recipes/ServerRendering.md 15.01KB
  87. redux-4.0.4/docs/recipes/UsageWithTypescript.md 10.04KB
  88. redux-4.0.4/docs/recipes/UsingImmutableJS.md 21.69KB
  89. redux-4.0.4/docs/recipes/UsingObjectSpreadOperator.md 2.94KB
  90. redux-4.0.4/docs/recipes/WritingTests.md 13.54KB
  91. redux-4.0.4/docs/recipes/structuring-reducers/
  92. redux-4.0.4/docs/recipes/structuring-reducers/BasicReducerStructure.md 4.98KB
  93. redux-4.0.4/docs/recipes/structuring-reducers/BeyondCombineReducers.md 6.55KB
  94. redux-4.0.4/docs/recipes/structuring-reducers/ImmutableUpdatePatterns.md 7.91KB
  95. redux-4.0.4/docs/recipes/structuring-reducers/InitializingState.md 6.57KB
  96. redux-4.0.4/docs/recipes/structuring-reducers/NormalizingStateShape.md 9.4KB
  97. redux-4.0.4/docs/recipes/structuring-reducers/PrerequisiteConcepts.md 5.53KB
  98. redux-4.0.4/docs/recipes/structuring-reducers/RefactoringReducersExample.md 11.8KB
  99. redux-4.0.4/docs/recipes/structuring-reducers/ReusingReducerLogic.md 5.74KB
  100. redux-4.0.4/docs/recipes/structuring-reducers/SplittingReducerLogic.md 3.8KB
  101. redux-4.0.4/docs/recipes/structuring-reducers/StructuringReducers.md 3.01KB
  102. redux-4.0.4/docs/recipes/structuring-reducers/UpdatingNormalizedData.md 9.92KB
  103. redux-4.0.4/docs/recipes/structuring-reducers/UsingCombineReducers.md 6.05KB
  104. redux-4.0.4/examples/
  105. redux-4.0.4/examples/README.md 124B
  106. redux-4.0.4/examples/async/
  107. redux-4.0.4/examples/async/.gitignore 155B
  108. redux-4.0.4/examples/async/README.md 2.06KB
  109. redux-4.0.4/examples/async/package-lock.json 517.96KB
  110. redux-4.0.4/examples/async/package.json 623B
  111. redux-4.0.4/examples/async/public/
  112. redux-4.0.4/examples/async/public/index.html 634B
  113. redux-4.0.4/examples/async/src/
  114. redux-4.0.4/examples/async/src/actions/
  115. redux-4.0.4/examples/async/src/actions/index.js 1.24KB
  116. redux-4.0.4/examples/async/src/components/
  117. redux-4.0.4/examples/async/src/components/Picker.js 570B
  118. redux-4.0.4/examples/async/src/components/Posts.js 260B
  119. redux-4.0.4/examples/async/src/containers/
  120. redux-4.0.4/examples/async/src/containers/App.js 2.41KB
  121. redux-4.0.4/examples/async/src/index.js 581B
  122. redux-4.0.4/examples/async/src/reducers/
  123. redux-4.0.4/examples/async/src/reducers/index.js 1.28KB
  124. redux-4.0.4/examples/counter-vanilla/
  125. redux-4.0.4/examples/counter-vanilla/README.md 796B
  126. redux-4.0.4/examples/counter-vanilla/index.html 1.76KB
  127. redux-4.0.4/examples/counter-vanilla/package.json 349B
  128. redux-4.0.4/examples/counter/
  129. redux-4.0.4/examples/counter/.gitignore 155B
  130. redux-4.0.4/examples/counter/README.md 2.06KB
  131. redux-4.0.4/examples/counter/package-lock.json 555.51KB
  132. redux-4.0.4/examples/counter/package.json 614B
  133. redux-4.0.4/examples/counter/public/
  134. redux-4.0.4/examples/counter/public/index.html 636B
  135. redux-4.0.4/examples/counter/src/
  136. redux-4.0.4/examples/counter/src/components/
  137. redux-4.0.4/examples/counter/src/components/Counter.js 1.11KB
  138. redux-4.0.4/examples/counter/src/components/Counter.spec.js 1.77KB
  139. redux-4.0.4/examples/counter/src/index.js 508B
  140. redux-4.0.4/examples/counter/src/reducers/
  141. redux-4.0.4/examples/counter/src/reducers/index.js 193B
  142. redux-4.0.4/examples/counter/src/reducers/index.spec.js 537B
  143. redux-4.0.4/examples/counter/src/setupTests.js 120B
  144. redux-4.0.4/examples/real-world/
  145. redux-4.0.4/examples/real-world/.gitignore 155B
  146. redux-4.0.4/examples/real-world/README.md 2.06KB
  147. redux-4.0.4/examples/real-world/package-lock.json 538.07KB
  148. redux-4.0.4/examples/real-world/package.json 859B
  149. redux-4.0.4/examples/real-world/public/
  150. redux-4.0.4/examples/real-world/public/index.html 624B
  151. redux-4.0.4/examples/real-world/src/
  152. redux-4.0.4/examples/real-world/src/actions/
  153. redux-4.0.4/examples/real-world/src/actions/index.js 3.71KB
  154. redux-4.0.4/examples/real-world/src/components/
  155. redux-4.0.4/examples/real-world/src/components/Explore.js 1.49KB
  156. redux-4.0.4/examples/real-world/src/components/List.js 1.32KB
  157. redux-4.0.4/examples/real-world/src/components/Repo.js 736B
  158. redux-4.0.4/examples/real-world/src/components/User.js 613B
  159. redux-4.0.4/examples/real-world/src/containers/
  160. redux-4.0.4/examples/real-world/src/containers/App.js 1.53KB
  161. redux-4.0.4/examples/real-world/src/containers/DevTools.js 337B
  162. redux-4.0.4/examples/real-world/src/containers/RepoPage.js 2.54KB
  163. redux-4.0.4/examples/real-world/src/containers/Root.dev.js 639B
  164. redux-4.0.4/examples/real-world/src/containers/Root.js 139B
  165. redux-4.0.4/examples/real-world/src/containers/Root.prod.js 585B
  166. redux-4.0.4/examples/real-world/src/containers/UserPage.js 2.5KB
  167. redux-4.0.4/examples/real-world/src/index.js 337B
  168. redux-4.0.4/examples/real-world/src/middleware/
  169. redux-4.0.4/examples/real-world/src/middleware/api.js 3.64KB
  170. redux-4.0.4/examples/real-world/src/reducers/
  171. redux-4.0.4/examples/real-world/src/reducers/index.js 1.29KB
  172. redux-4.0.4/examples/real-world/src/reducers/paginate.js 1.74KB
  173. redux-4.0.4/examples/real-world/src/store/
  174. redux-4.0.4/examples/real-world/src/store/configureStore.dev.js 694B
  175. redux-4.0.4/examples/real-world/src/store/configureStore.js 159B
  176. redux-4.0.4/examples/real-world/src/store/configureStore.prod.js 310B
  177. redux-4.0.4/examples/shopping-cart/
  178. redux-4.0.4/examples/shopping-cart/.gitignore 155B
  179. redux-4.0.4/examples/shopping-cart/README.md 2.06KB
  180. redux-4.0.4/examples/shopping-cart/package-lock.json 555.92KB
  181. redux-4.0.4/examples/shopping-cart/package.json 679B
  182. redux-4.0.4/examples/shopping-cart/public/
  183. redux-4.0.4/examples/shopping-cart/public/index.html 642B
  184. redux-4.0.4/examples/shopping-cart/src/
  185. redux-4.0.4/examples/shopping-cart/src/actions/
  186. redux-4.0.4/examples/shopping-cart/src/actions/index.js 936B
  187. redux-4.0.4/examples/shopping-cart/src/api/
  188. redux-4.0.4/examples/shopping-cart/src/api/products.json 229B
  189. redux-4.0.4/examples/shopping-cart/src/api/shop.js 294B
  190. redux-4.0.4/examples/shopping-cart/src/components/
  191. redux-4.0.4/examples/shopping-cart/src/components/Cart.js 848B
  192. redux-4.0.4/examples/shopping-cart/src/components/Cart.spec.js 1.73KB
  193. redux-4.0.4/examples/shopping-cart/src/components/Product.js 326B
  194. redux-4.0.4/examples/shopping-cart/src/components/Product.spec.js 710B
  195. redux-4.0.4/examples/shopping-cart/src/components/ProductItem.js 760B
  196. redux-4.0.4/examples/shopping-cart/src/components/ProductItem.spec.js 1.66KB
  197. redux-4.0.4/examples/shopping-cart/src/components/ProductsList.js 300B
  198. redux-4.0.4/examples/shopping-cart/src/components/ProductsList.spec.js 721B
  199. redux-4.0.4/examples/shopping-cart/src/constants/
  200. redux-4.0.4/examples/shopping-cart/src/constants/ActionTypes.js 245B
  201. redux-4.0.4/examples/shopping-cart/src/containers/
  202. redux-4.0.4/examples/shopping-cart/src/containers/App.js 285B
  203. redux-4.0.4/examples/shopping-cart/src/containers/CartContainer.js 895B
  204. redux-4.0.4/examples/shopping-cart/src/containers/ProductsContainer.js 1.02KB
  205. redux-4.0.4/examples/shopping-cart/src/index.js 660B
  206. redux-4.0.4/examples/shopping-cart/src/reducers/
  207. redux-4.0.4/examples/shopping-cart/src/reducers/cart.js 1.17KB
  208. redux-4.0.4/examples/shopping-cart/src/reducers/cart.spec.js 1.15KB
  209. redux-4.0.4/examples/shopping-cart/src/reducers/index.js 731B
  210. redux-4.0.4/examples/shopping-cart/src/reducers/index.spec.js 1.54KB
  211. redux-4.0.4/examples/shopping-cart/src/reducers/products.js 1.16KB
  212. redux-4.0.4/examples/shopping-cart/src/reducers/products.spec.js 1.84KB
  213. redux-4.0.4/examples/shopping-cart/src/setupTests.js 120B
  214. redux-4.0.4/examples/testAll.js 1.22KB
  215. redux-4.0.4/examples/todomvc/
  216. redux-4.0.4/examples/todomvc/.gitignore 155B
  217. redux-4.0.4/examples/todomvc/README.md 2.06KB
  218. redux-4.0.4/examples/todomvc/package-lock.json 520.75KB
  219. redux-4.0.4/examples/todomvc/package.json 673B
  220. redux-4.0.4/examples/todomvc/public/
  221. redux-4.0.4/examples/todomvc/public/index.html 652B
  222. redux-4.0.4/examples/todomvc/src/
  223. redux-4.0.4/examples/todomvc/src/actions/
  224. redux-4.0.4/examples/todomvc/src/actions/index.js 564B
  225. redux-4.0.4/examples/todomvc/src/actions/index.spec.js 1.13KB
  226. redux-4.0.4/examples/todomvc/src/components/
  227. redux-4.0.4/examples/todomvc/src/components/App.js 215B
  228. redux-4.0.4/examples/todomvc/src/components/App.spec.js 800B
  229. redux-4.0.4/examples/todomvc/src/components/Footer.js 1.21KB
  230. redux-4.0.4/examples/todomvc/src/components/Footer.spec.js 3.06KB
  231. redux-4.0.4/examples/todomvc/src/components/Header.js 472B
  232. redux-4.0.4/examples/todomvc/src/components/Header.spec.js 1.27KB
  233. redux-4.0.4/examples/todomvc/src/components/Link.js 532B
  234. redux-4.0.4/examples/todomvc/src/components/Link.spec.js 1.04KB
  235. redux-4.0.4/examples/todomvc/src/components/MainSection.js 988B
  236. redux-4.0.4/examples/todomvc/src/components/MainSection.spec.js 3.09KB
  237. redux-4.0.4/examples/todomvc/src/components/TodoItem.js 1.6KB
  238. redux-4.0.4/examples/todomvc/src/components/TodoItem.spec.js 3.34KB
  239. redux-4.0.4/examples/todomvc/src/components/TodoList.js 571B
  240. redux-4.0.4/examples/todomvc/src/components/TodoList.spec.js 1.32KB
  241. redux-4.0.4/examples/todomvc/src/components/TodoTextInput.js 1.17KB
  242. redux-4.0.4/examples/todomvc/src/components/TodoTextInput.spec.js 2.43KB
  243. redux-4.0.4/examples/todomvc/src/constants/
  244. redux-4.0.4/examples/todomvc/src/constants/ActionTypes.js 323B
  245. redux-4.0.4/examples/todomvc/src/constants/TodoFilters.js 123B
  246. redux-4.0.4/examples/todomvc/src/containers/
  247. redux-4.0.4/examples/todomvc/src/containers/FilterLink.js 437B
  248. redux-4.0.4/examples/todomvc/src/containers/Header.js 168B
  249. redux-4.0.4/examples/todomvc/src/containers/MainSection.js 532B
  250. redux-4.0.4/examples/todomvc/src/containers/VisibleTodoList.js 514B
  251. redux-4.0.4/examples/todomvc/src/index.js 374B
  252. redux-4.0.4/examples/todomvc/src/reducers/
  253. redux-4.0.4/examples/todomvc/src/reducers/index.js 216B
  254. redux-4.0.4/examples/todomvc/src/reducers/todos.js 1.22KB
  255. redux-4.0.4/examples/todomvc/src/reducers/todos.spec.js 5.05KB
  256. redux-4.0.4/examples/todomvc/src/reducers/visibilityFilter.js 329B
  257. redux-4.0.4/examples/todomvc/src/selectors/
  258. redux-4.0.4/examples/todomvc/src/selectors/index.js 822B
  259. redux-4.0.4/examples/todos-flow/
  260. redux-4.0.4/examples/todos-flow/.flowconfig 89B
  261. redux-4.0.4/examples/todos-flow/.gitignore 248B
  262. redux-4.0.4/examples/todos-flow/README.md 2.06KB
  263. redux-4.0.4/examples/todos-flow/package-lock.json 586.25KB
  264. redux-4.0.4/examples/todos-flow/package.json 762B
  265. redux-4.0.4/examples/todos-flow/public/
  266. redux-4.0.4/examples/todos-flow/public/favicon.ico 24.26KB
  267. redux-4.0.4/examples/todos-flow/public/index.html 1.12KB
  268. redux-4.0.4/examples/todos-flow/src/
  269. redux-4.0.4/examples/todos-flow/src/actions/
  270. redux-4.0.4/examples/todos-flow/src/actions/todos.js 328B
  271. redux-4.0.4/examples/todos-flow/src/actions/visibilityFilter.js 266B
  272. redux-4.0.4/examples/todos-flow/src/components/
  273. redux-4.0.4/examples/todos-flow/src/components/App.js 292B
  274. redux-4.0.4/examples/todos-flow/src/components/App.spec.js 461B
  275. redux-4.0.4/examples/todos-flow/src/components/Footer.js 402B
  276. redux-4.0.4/examples/todos-flow/src/components/Footer.spec.js 473B
  277. redux-4.0.4/examples/todos-flow/src/components/Link.js 491B
  278. redux-4.0.4/examples/todos-flow/src/components/Link.spec.js 1.06KB
  279. redux-4.0.4/examples/todos-flow/src/components/Todo.js 377B
  280. redux-4.0.4/examples/todos-flow/src/components/Todo.spec.js 995B
  281. redux-4.0.4/examples/todos-flow/src/components/TodoList.js 397B
  282. redux-4.0.4/examples/todos-flow/src/components/TodoList.spec.js 1KB
  283. redux-4.0.4/examples/todos-flow/src/components/__snapshots__/
  284. redux-4.0.4/examples/todos-flow/src/components/__snapshots__/App.spec.js.snap 109B
  285. redux-4.0.4/examples/todos-flow/src/components/__snapshots__/Footer.spec.js.snap 112B
  286. redux-4.0.4/examples/todos-flow/src/components/__snapshots__/Link.spec.js.snap 254B
  287. redux-4.0.4/examples/todos-flow/src/components/__snapshots__/Todo.spec.js.snap 261B
  288. redux-4.0.4/examples/todos-flow/src/components/__snapshots__/TodoList.spec.js.snap 195B
  289. redux-4.0.4/examples/todos-flow/src/containers/
  290. redux-4.0.4/examples/todos-flow/src/containers/AddTodo.js 1002B
  291. redux-4.0.4/examples/todos-flow/src/containers/AddTodo.spec.js 1.42KB
  292. redux-4.0.4/examples/todos-flow/src/containers/FilterLink.js 739B
  293. redux-4.0.4/examples/todos-flow/src/containers/FilterLink.spec.js 880B
  294. redux-4.0.4/examples/todos-flow/src/containers/VisibleTodoList.js 594B
  295. redux-4.0.4/examples/todos-flow/src/containers/VisibleTodoList.spec.js 1.61KB
  296. redux-4.0.4/examples/todos-flow/src/containers/__snapshots__/
  297. redux-4.0.4/examples/todos-flow/src/containers/__snapshots__/AddTodo.spec.js.snap 113B
  298. redux-4.0.4/examples/todos-flow/src/containers/__snapshots__/FilterLink.spec.js.snap 201B
  299. redux-4.0.4/examples/todos-flow/src/containers/__snapshots__/VisibleTodoList.spec.js.snap 439B
  300. redux-4.0.4/examples/todos-flow/src/index.js 588B
  301. redux-4.0.4/examples/todos-flow/src/reducers/
  302. redux-4.0.4/examples/todos-flow/src/reducers/index.js 198B
  303. redux-4.0.4/examples/todos-flow/src/reducers/index.spec.js 243B
  304. redux-4.0.4/examples/todos-flow/src/reducers/todos.js 627B
  305. redux-4.0.4/examples/todos-flow/src/reducers/todos.spec.js 1.9KB
  306. redux-4.0.4/examples/todos-flow/src/reducers/visibilityFilter.js 387B
  307. redux-4.0.4/examples/todos-flow/src/reducers/visibilityFilter.spec.js 472B
  308. redux-4.0.4/examples/todos-flow/src/selectors/
  309. redux-4.0.4/examples/todos-flow/src/selectors/index.js 608B
  310. redux-4.0.4/examples/todos-flow/src/selectors/index.spec.js 975B
  311. redux-4.0.4/examples/todos-flow/src/setupTests.js 120B
  312. redux-4.0.4/examples/todos-flow/src/types/
  313. redux-4.0.4/examples/todos-flow/src/types/index.js 518B
  314. redux-4.0.4/examples/todos-flow/src/types/todos.js 329B
  315. redux-4.0.4/examples/todos-flow/src/types/visibilityFilter.js 272B
  316. redux-4.0.4/examples/todos-with-undo/
  317. redux-4.0.4/examples/todos-with-undo/.gitignore 155B
  318. redux-4.0.4/examples/todos-with-undo/README.md 2.07KB
  319. redux-4.0.4/examples/todos-with-undo/package-lock.json 519.92KB
  320. redux-4.0.4/examples/todos-with-undo/package.json 602B
  321. redux-4.0.4/examples/todos-with-undo/public/
  322. redux-4.0.4/examples/todos-with-undo/public/index.html 644B
  323. redux-4.0.4/examples/todos-with-undo/src/
  324. redux-4.0.4/examples/todos-with-undo/src/actions/
  325. redux-4.0.4/examples/todos-with-undo/src/actions/index.js 270B
  326. redux-4.0.4/examples/todos-with-undo/src/components/
  327. redux-4.0.4/examples/todos-with-undo/src/components/App.js 338B
  328. redux-4.0.4/examples/todos-with-undo/src/components/Footer.js 387B
  329. redux-4.0.4/examples/todos-with-undo/src/components/Link.js 496B
  330. redux-4.0.4/examples/todos-with-undo/src/components/Todo.js 399B
  331. redux-4.0.4/examples/todos-with-undo/src/components/TodoList.js 571B
  332. redux-4.0.4/examples/todos-with-undo/src/containers/
  333. redux-4.0.4/examples/todos-with-undo/src/containers/AddTodo.js 581B
  334. redux-4.0.4/examples/todos-with-undo/src/containers/FilterLink.js 466B
  335. redux-4.0.4/examples/todos-with-undo/src/containers/UndoRedo.js 679B
  336. redux-4.0.4/examples/todos-with-undo/src/containers/VisibleTodoList.js 730B
  337. redux-4.0.4/examples/todos-with-undo/src/index.js 339B
  338. redux-4.0.4/examples/todos-with-undo/src/reducers/
  339. redux-4.0.4/examples/todos-with-undo/src/reducers/index.js 208B
  340. redux-4.0.4/examples/todos-with-undo/src/reducers/todos.js 769B
  341. redux-4.0.4/examples/todos-with-undo/src/reducers/visibilityFilter.js 216B
  342. redux-4.0.4/examples/todos/
  343. redux-4.0.4/examples/todos/.gitignore 155B
  344. redux-4.0.4/examples/todos/README.md 2.06KB
  345. redux-4.0.4/examples/todos/package-lock.json 518.98KB
  346. redux-4.0.4/examples/todos/package.json 546B
  347. redux-4.0.4/examples/todos/public/
  348. redux-4.0.4/examples/todos/public/index.html 634B
  349. redux-4.0.4/examples/todos/src/
  350. redux-4.0.4/examples/todos/src/actions/
  351. redux-4.0.4/examples/todos/src/actions/index.js 391B
  352. redux-4.0.4/examples/todos/src/actions/index.spec.js 618B
  353. redux-4.0.4/examples/todos/src/components/
  354. redux-4.0.4/examples/todos/src/components/App.js 275B
  355. redux-4.0.4/examples/todos/src/components/Footer.js 474B
  356. redux-4.0.4/examples/todos/src/components/Link.js 425B
  357. redux-4.0.4/examples/todos/src/components/Todo.js 399B
  358. redux-4.0.4/examples/todos/src/components/TodoList.js 568B
  359. redux-4.0.4/examples/todos/src/containers/
  360. redux-4.0.4/examples/todos/src/containers/AddTodo.js 543B
  361. redux-4.0.4/examples/todos/src/containers/FilterLink.js 425B
  362. redux-4.0.4/examples/todos/src/containers/VisibleTodoList.js 805B
  363. redux-4.0.4/examples/todos/src/index.js 347B
  364. redux-4.0.4/examples/todos/src/reducers/
  365. redux-4.0.4/examples/todos/src/reducers/index.js 183B
  366. redux-4.0.4/examples/todos/src/reducers/todos.js 450B
  367. redux-4.0.4/examples/todos/src/reducers/todos.spec.js 1.87KB
  368. redux-4.0.4/examples/todos/src/reducers/visibilityFilter.js 280B
  369. redux-4.0.4/examples/tree-view/
  370. redux-4.0.4/examples/tree-view/.gitignore 155B
  371. redux-4.0.4/examples/tree-view/README.md 2.06KB
  372. redux-4.0.4/examples/tree-view/package-lock.json 556.28KB
  373. redux-4.0.4/examples/tree-view/package.json 615B
  374. redux-4.0.4/examples/tree-view/public/
  375. redux-4.0.4/examples/tree-view/public/index.html 638B
  376. redux-4.0.4/examples/tree-view/src/
  377. redux-4.0.4/examples/tree-view/src/actions/
  378. redux-4.0.4/examples/tree-view/src/actions/index.js 637B
  379. redux-4.0.4/examples/tree-view/src/containers/
  380. redux-4.0.4/examples/tree-view/src/containers/Node.js 1.72KB
  381. redux-4.0.4/examples/tree-view/src/containers/Node.spec.js 2.55KB
  382. redux-4.0.4/examples/tree-view/src/generateTree.js 352B
  383. redux-4.0.4/examples/tree-view/src/index.js 425B
  384. redux-4.0.4/examples/tree-view/src/reducers/
  385. redux-4.0.4/examples/tree-view/src/reducers/index.js 1.4KB
  386. redux-4.0.4/examples/tree-view/src/reducers/index.spec.js 3.25KB
  387. redux-4.0.4/examples/tree-view/src/setupTests.js 120B
  388. redux-4.0.4/examples/universal/
  389. redux-4.0.4/examples/universal/.babelrc 36B
  390. redux-4.0.4/examples/universal/client/
  391. redux-4.0.4/examples/universal/client/index.js 452B
  392. redux-4.0.4/examples/universal/common/
  393. redux-4.0.4/examples/universal/common/actions/
  394. redux-4.0.4/examples/universal/common/actions/index.js 640B
  395. redux-4.0.4/examples/universal/common/api/
  396. redux-4.0.4/examples/universal/common/api/counter.js 445B
  397. redux-4.0.4/examples/universal/common/components/
  398. redux-4.0.4/examples/universal/common/components/Counter.js 710B
  399. redux-4.0.4/examples/universal/common/containers/
  400. redux-4.0.4/examples/universal/common/containers/App.js 407B
  401. redux-4.0.4/examples/universal/common/reducers/
  402. redux-4.0.4/examples/universal/common/reducers/counter.js 360B
  403. redux-4.0.4/examples/universal/common/reducers/index.js 152B
  404. redux-4.0.4/examples/universal/common/store/
  405. redux-4.0.4/examples/universal/common/store/configureStore.js 490B
  406. redux-4.0.4/examples/universal/index.js 20B
  407. redux-4.0.4/examples/universal/package-lock.json 184.41KB
  408. redux-4.0.4/examples/universal/package.json 817B
  409. redux-4.0.4/examples/universal/server/
  410. redux-4.0.4/examples/universal/server/index.js 46B
  411. redux-4.0.4/examples/universal/server/server.js 2.3KB
  412. redux-4.0.4/examples/universal/webpack.config.js 644B
  413. redux-4.0.4/index.d.ts 20.76KB
  414. redux-4.0.4/logo/
  415. redux-4.0.4/logo/README.md 1.75KB
  416. redux-4.0.4/logo/apple-touch-icon.png 18.73KB
  417. redux-4.0.4/logo/favicon.ico 4.19KB
  418. redux-4.0.4/logo/logo-title-dark.png 96.48KB
  419. redux-4.0.4/logo/logo-title-light.png 96.33KB
  420. redux-4.0.4/logo/logo.png 212.88KB
  421. redux-4.0.4/logo/logo.svg 1.12KB
  422. redux-4.0.4/package-lock.json 282.09KB
  423. redux-4.0.4/package.json 2.89KB
  424. redux-4.0.4/rollup.config.js 2KB
  425. redux-4.0.4/src/
  426. redux-4.0.4/src/applyMiddleware.js 1.32KB
  427. redux-4.0.4/src/bindActionCreators.js 1.9KB
  428. redux-4.0.4/src/combineReducers.js 5.87KB
  429. redux-4.0.4/src/compose.js 652B
  430. redux-4.0.4/src/createStore.js 10.12KB
  431. redux-4.0.4/src/index.js 1.19KB
  432. redux-4.0.4/src/utils/
  433. redux-4.0.4/src/utils/actionTypes.js 588B
  434. redux-4.0.4/src/utils/isPlainObject.js 392B
  435. redux-4.0.4/src/utils/warning.js 603B
  436. redux-4.0.4/test/
  437. redux-4.0.4/test/applyMiddleware.spec.js 3.25KB
  438. redux-4.0.4/test/bindActionCreators.spec.js 3.24KB
  439. redux-4.0.4/test/combineReducers.spec.js 7.95KB
  440. redux-4.0.4/test/compose.spec.js 2.25KB
  441. redux-4.0.4/test/createStore.spec.js 20.75KB
  442. redux-4.0.4/test/helpers/
  443. redux-4.0.4/test/helpers/actionCreators.js 1.18KB
  444. redux-4.0.4/test/helpers/actionTypes.js 353B
  445. redux-4.0.4/test/helpers/middleware.js 154B
  446. redux-4.0.4/test/helpers/reducers.js 1.75KB
  447. redux-4.0.4/test/typescript.spec.js 201B
  448. redux-4.0.4/test/typescript/
  449. redux-4.0.4/test/typescript/actionCreators.ts 1.43KB
  450. redux-4.0.4/test/typescript/actions.ts 931B
  451. redux-4.0.4/test/typescript/compose.ts 1.43KB
  452. redux-4.0.4/test/typescript/dispatch.ts 1.02KB
  453. redux-4.0.4/test/typescript/enhancers.ts 1.68KB
  454. redux-4.0.4/test/typescript/injectedDispatch.ts 1.88KB
  455. redux-4.0.4/test/typescript/middleware.ts 5.34KB
  456. redux-4.0.4/test/typescript/reducers.ts 5.3KB
  457. redux-4.0.4/test/typescript/store.ts 2.07KB
  458. redux-4.0.4/test/typescript/tsconfig.json 156B
  459. redux-4.0.4/test/utils/
  460. redux-4.0.4/test/utils/isPlainObject.spec.js 703B
  461. redux-4.0.4/test/utils/warning.spec.js 1.12KB
  462. redux-4.0.4/website/
  463. redux-4.0.4/website/README.md 3.97KB
  464. redux-4.0.4/website/_redirects 8.16KB
  465. redux-4.0.4/website/core/
  466. redux-4.0.4/website/core/Footer.js 3.12KB
  467. redux-4.0.4/website/package-lock.json 305.52KB
  468. redux-4.0.4/website/package.json 454B
  469. redux-4.0.4/website/pages/
  470. redux-4.0.4/website/pages/en/
  471. redux-4.0.4/website/pages/en/404.js 1018B
  472. redux-4.0.4/website/pages/en/index.js 5.67KB
  473. redux-4.0.4/website/sidebars.json 2.8KB
  474. redux-4.0.4/website/siteConfig.js 3.18KB
  475. redux-4.0.4/website/static/
  476. redux-4.0.4/website/static/css/
  477. redux-4.0.4/website/static/css/404.css 693B
  478. redux-4.0.4/website/static/css/codeblock.css 572B
  479. redux-4.0.4/website/static/css/custom.css 5.75KB
  480. redux-4.0.4/website/static/img/
  481. redux-4.0.4/website/static/img/cogs-solid.svg 2.53KB
  482. redux-4.0.4/website/static/img/cubes-solid.svg 819B
  483. redux-4.0.4/website/static/img/external-link-square-alt-solid.svg 629B
  484. redux-4.0.4/website/static/img/favicon/
  485. redux-4.0.4/website/static/img/favicon/favicon.ico 4.19KB
  486. redux-4.0.4/website/static/img/github-brands.svg 1.48KB
  487. redux-4.0.4/website/static/img/noun_Check_1870817.svg 308B
  488. redux-4.0.4/website/static/img/noun_debugging_1978252.svg 1.63KB
  489. redux-4.0.4/website/static/img/redux-logo-landscape.png 38.69KB
  490. redux-4.0.4/website/static/img/redux-logo-twitter.png 37.6KB
  491. redux-4.0.4/website/static/img/redux.svg 1.12KB
  492. redux-4.0.4/website/static/img/redux_white.svg 1.12KB
  493. redux-4.0.4/website/static/scripts/
  494. redux-4.0.4/website/static/scripts/codeblock.js 1.9KB
  495. redux-4.0.4/website/static/scripts/sidebarScroll.js 594B
0评论
提交 加载更多评论
其他资源 redux-4.0.5.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-4.0.3.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-4.1.1.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-4.1.0-alpha.0.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-4.0.1.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-4.0.2.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-4.0.0.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-4.0.0-beta.1.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management