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

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

redux-4.1.1.zip

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