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

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

redux-5.0.0-alpha.6.zip

前端 15.92MB 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://redux.io)) 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), and has a rich ecosystem of addons. ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/reduxjs/redux/test.yaml?branch=master&event=push&style=flat-square) [![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) ## Installation [**Redux Toolkit**](https://redux-toolkit.js.org) is our official recommended approach for writing Redux logic. It wraps around the Redux core, and contains packages and functions that we think are essential for building a Redux app. Redux Toolkit builds in our suggested best practices, simplifies most Redux tasks, prevents common mistakes, and makes it easier to write Redux applications. ``` npm install @reduxjs/toolkit react-redux ``` For the Redux core library by itself: ``` npm install redux ``` For more details, see [the Installation docs page](https://redux.js.org/introduction/installation). ## Documentation The Redux docs are located at **https://redux.js.org**: - [Introduction](https://redux.js.org/introduction/getting-started) - [Tutorials](https://redux.js.org/tutorials/index) - [Usage Guides](https://redux.js.org/usage/index) - [FAQ](https://redux.js.org/faq) - [API Reference](https://redux.js.org/api/api-reference) ## Learn Redux ### Redux Essentials Tutorial The [**Redux Essentials tutorial**](https://redux.js.org/tutorials/essentials/part-1-overview-concepts) is a "top-down" tutorial that teaches "how to use Redux the right way", using our latest recommended APIs and best practices. We recommend starting there. ### Redux Fundamentals Tutorial The [**Redux Fundamentals tutorial**](https://redux.js.org/tutorials/fundamentals/part-1-overview) is a "bottom-up" tutorial that teaches "how Redux works" from first principles and without any abstractions, and why standard Redux usage patterns exist. ### Additional Tutorials - The Redux repository contains several example projects demonstrating various aspects of how to use Redux. Almost all examples have a corresponding CodeSandbox sandbox. This is an interactive version of the code that you can play with online. See the complete list of examples in the **[Examples page](https://redux.js.org/introduction/examples)**. - Redux creator Dan Abramov's **free ["Getting Started with Redux" video series](https://app.egghead.io/playlists/fundamentals-of-redux-course-from-dan-abramov-bd5cc867)** and **[Building React Applications with Idiomatic Redux](https://egghead.io/courses/building-react-applications-with-idiomatic-redux)** video courses on Egghead.io - Redux maintainer Mark Erikson's **["Redux Fundamentals" conference talk](https://blog.isquaredsoftware.com/2018/03/presentation-reactathon-redux-fundamentals/)** and [**"Redux Fundamentals" workshop slides**](https://blog.isquaredsoftware.com/2018/06/redux-fundamentals-workshop-slides/) - Dave Ceddia's post [**A Complete React Redux Tutorial for Beginners**](https://daveceddia.com/redux-tutorial/) ### Other Resources - The **[Redux FAQ](https://redux.js.org/faq)** answers many common questions about how to use Redux, and the **["Using Redux" docs section](https://redux.js.org/usage/index)** has information on handling derived data, testing, structuring reducer logic, and reducing boilerplate. - Redux maintainer Mark Erikson's **["Practical Redux" tutorial series](https://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 also there's a complete listing available in the **[Redux addons catalog](https://github.com/markerikson/redux-ecosystem-links)**. ### Help and Discussion The **[#redux channel](https://discord.gg/0ZcbPKXt5bZ6au5t)** of the **[Reactiflux Discord community](https://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 - please come and join us there! ## Before Proceeding Further Redux is a valuable tool for organizing your state, but you should also consider whether it's appropriate for your situation. Please don't use Redux just because someone said you should - instead, please take some time to understand the potential benefits and tradeoffs of using it. Here are some suggestions on when it makes sense to use Redux: - You have reasonable amounts of data changing over time - You need a single source of truth for your state - You find that keeping all your state in a top-level component is no longer sufficient Yes, these guidelines are subjective and vague, but this is for a good reason. The point at which you should integrate Redux into your application is different for every user and different for every application. > **For more thoughts on how Redux is meant to be used, please see:**
> > - **[When (and when not) to reach for Redux](https://changelog.com/posts/when-and-when-not-to-reach-for-redux)** > - **[You Might Not Need Redux](https://medium.com/@dan_abramov/you-might-not-need-redux-be46360cf367)**
> - **[The Tao of Redux, Part 1 - Implementation and Intent](https://blog.isquaredsoftware.com/2017/05/idiomatic-redux-tao-of-redux-part-1/)**
> - **[The Tao of Redux, Part 2 - Practice and Philosophy](https://blog.isquaredsoftware.com/2017/05/idiomatic-redux-tao-of-redux-part-2/)** > - **[Redux FAQ](https://redux.js.org/faq)** ## Developer Experience Dan Abramov (author of Redux) wrote Redux while working on his React Europe talk called [“Hot Reloading with Time Travel”](https://www.youtube.com/watch?v=xsSnOQynTHs). His goal was to create a state management library with a minimal API but completely predictable behavior. Redux makes it possible to implement logging, hot reloading, time travel, universal apps, record and replay, without any buy-in from the developer. ## Influences Redux evolves the ideas of [Flux](https://facebook.github.io/flux/), but avoid

资源文件列表:

redux-5.0.0-alpha.6.zip 大约有580个文件
  1. redux-5.0.0-alpha.6/
  2. redux-5.0.0-alpha.6/.babelrc.cjs 253B
  3. redux-5.0.0-alpha.6/.codesandbox/
  4. redux-5.0.0-alpha.6/.codesandbox/ci.json 61B
  5. redux-5.0.0-alpha.6/.editorconfig 304B
  6. redux-5.0.0-alpha.6/.eslintignore 156B
  7. redux-5.0.0-alpha.6/.eslintrc.cjs 713B
  8. redux-5.0.0-alpha.6/.git-blame-ignore-revs 82B
  9. redux-5.0.0-alpha.6/.gitbook.yaml 57B
  10. redux-5.0.0-alpha.6/.github/
  11. redux-5.0.0-alpha.6/.github/FUNDING.yml 41B
  12. redux-5.0.0-alpha.6/.github/ISSUE_TEMPLATE/
  13. redux-5.0.0-alpha.6/.github/ISSUE_TEMPLATE/Bug_report.md 1.37KB
  14. redux-5.0.0-alpha.6/.github/ISSUE_TEMPLATE/Feature_request.md 1.22KB
  15. redux-5.0.0-alpha.6/.github/ISSUE_TEMPLATE/config.yml 273B
  16. redux-5.0.0-alpha.6/.github/ISSUE_TEMPLATE/documentation-edit.md 232B
  17. redux-5.0.0-alpha.6/.github/ISSUE_TEMPLATE/documentation-new.md 726B
  18. redux-5.0.0-alpha.6/.github/PULL_REQUEST_TEMPLATE.md 356B
  19. redux-5.0.0-alpha.6/.github/PULL_REQUEST_TEMPLATE/
  20. redux-5.0.0-alpha.6/.github/PULL_REQUEST_TEMPLATE/bugfix.md 877B
  21. redux-5.0.0-alpha.6/.github/PULL_REQUEST_TEMPLATE/documentation-edit.md 365B
  22. redux-5.0.0-alpha.6/.github/PULL_REQUEST_TEMPLATE/documentation-new.md 929B
  23. redux-5.0.0-alpha.6/.github/workflows/
  24. redux-5.0.0-alpha.6/.github/workflows/size.yaml 313B
  25. redux-5.0.0-alpha.6/.github/workflows/test.yaml 5.02KB
  26. redux-5.0.0-alpha.6/.gitignore 301B
  27. redux-5.0.0-alpha.6/.prettierrc.json 113B
  28. redux-5.0.0-alpha.6/.release-it.json 105B
  29. redux-5.0.0-alpha.6/.yarn/
  30. redux-5.0.0-alpha.6/.yarn/releases/
  31. redux-5.0.0-alpha.6/.yarn/releases/yarn-3.4.1.cjs 2.11MB
  32. redux-5.0.0-alpha.6/.yarnrc.yml 66B
  33. redux-5.0.0-alpha.6/CHANGELOG.md 226B
  34. redux-5.0.0-alpha.6/CNAME 13B
  35. redux-5.0.0-alpha.6/CODE_OF_CONDUCT.md 3.16KB
  36. redux-5.0.0-alpha.6/CONTRIBUTING.md 5.18KB
  37. redux-5.0.0-alpha.6/LICENSE-logo.md 6.85KB
  38. redux-5.0.0-alpha.6/LICENSE.md 1.06KB
  39. redux-5.0.0-alpha.6/PATRONS.md 803B
  40. redux-5.0.0-alpha.6/README.md 17.01KB
  41. redux-5.0.0-alpha.6/docs/
  42. redux-5.0.0-alpha.6/docs/FAQ.md 7.97KB
  43. redux-5.0.0-alpha.6/docs/api/
  44. redux-5.0.0-alpha.6/docs/api/Store.md 8.64KB
  45. redux-5.0.0-alpha.6/docs/api/api-reference.md 1.36KB
  46. redux-5.0.0-alpha.6/docs/api/applyMiddleware.md 9.67KB
  47. redux-5.0.0-alpha.6/docs/api/bindActionCreators.md 4.14KB
  48. redux-5.0.0-alpha.6/docs/api/combineReducers.md 5.59KB
  49. redux-5.0.0-alpha.6/docs/api/compose.md 1.54KB
  50. redux-5.0.0-alpha.6/docs/api/createStore.md 3.03KB
  51. redux-5.0.0-alpha.6/docs/components/
  52. redux-5.0.0-alpha.6/docs/components/DetailedExplanation.jsx 272B
  53. redux-5.0.0-alpha.6/docs/components/_FundamentalsWarning.mdx 922B
  54. redux-5.0.0-alpha.6/docs/faq/
  55. redux-5.0.0-alpha.6/docs/faq/Actions.md 15.25KB
  56. redux-5.0.0-alpha.6/docs/faq/CodeStructure.md 14.18KB
  57. redux-5.0.0-alpha.6/docs/faq/DesignDecisions.md 9.97KB
  58. redux-5.0.0-alpha.6/docs/faq/General.md 8.23KB
  59. redux-5.0.0-alpha.6/docs/faq/ImmutableData.md 26.16KB
  60. redux-5.0.0-alpha.6/docs/faq/Miscellaneous.md 2.92KB
  61. redux-5.0.0-alpha.6/docs/faq/OrganizingState.md 9.82KB
  62. redux-5.0.0-alpha.6/docs/faq/Performance.md 16.88KB
  63. redux-5.0.0-alpha.6/docs/faq/ReactRedux.md 16.39KB
  64. redux-5.0.0-alpha.6/docs/faq/Reducers.md 4.84KB
  65. redux-5.0.0-alpha.6/docs/faq/StoreSetup.md 7.36KB
  66. redux-5.0.0-alpha.6/docs/introduction/
  67. redux-5.0.0-alpha.6/docs/introduction/CoreConcepts.md 2.7KB
  68. redux-5.0.0-alpha.6/docs/introduction/Ecosystem.md 26.54KB
  69. redux-5.0.0-alpha.6/docs/introduction/Examples.md 8.59KB
  70. redux-5.0.0-alpha.6/docs/introduction/GettingStarted.md 13.02KB
  71. redux-5.0.0-alpha.6/docs/introduction/Installation.md 3.34KB
  72. redux-5.0.0-alpha.6/docs/introduction/LearningResources.md 23.97KB
  73. redux-5.0.0-alpha.6/docs/introduction/README.md 150B
  74. redux-5.0.0-alpha.6/docs/introduction/why-rtk-is-redux-today.md 15.05KB
  75. redux-5.0.0-alpha.6/docs/package.json 198B
  76. redux-5.0.0-alpha.6/docs/redux-toolkit/
  77. redux-5.0.0-alpha.6/docs/redux-toolkit/overview.md 5.59KB
  78. redux-5.0.0-alpha.6/docs/style-guide/
  79. redux-5.0.0-alpha.6/docs/style-guide/style-guide.md 44.71KB
  80. redux-5.0.0-alpha.6/docs/tutorials/
  81. redux-5.0.0-alpha.6/docs/tutorials/essentials/
  82. redux-5.0.0-alpha.6/docs/tutorials/essentials/part-1-overview-concepts.md 20.95KB
  83. redux-5.0.0-alpha.6/docs/tutorials/essentials/part-2-app-structure.md 34.75KB
  84. redux-5.0.0-alpha.6/docs/tutorials/essentials/part-3-data-flow.md 21.21KB
  85. redux-5.0.0-alpha.6/docs/tutorials/essentials/part-4-using-data.md 36.18KB
  86. redux-5.0.0-alpha.6/docs/tutorials/essentials/part-5-async-logic.md 39.82KB
  87. redux-5.0.0-alpha.6/docs/tutorials/essentials/part-6-performance-normalization.md 47.74KB
  88. redux-5.0.0-alpha.6/docs/tutorials/essentials/part-7-rtk-query-basics.md 39.26KB
  89. redux-5.0.0-alpha.6/docs/tutorials/essentials/part-8-rtk-query-advanced.md 59.09KB
  90. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/
  91. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/part-1-overview.md 16.59KB
  92. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/part-2-concepts-data-flow.md 16.11KB
  93. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/part-3-state-actions-reducers.md 31.92KB
  94. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/part-4-store.md 29.23KB
  95. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/part-5-ui-and-react.md 30.2KB
  96. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/part-6-async-logic.md 21.84KB
  97. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/part-7-standard-patterns.md 38.7KB
  98. redux-5.0.0-alpha.6/docs/tutorials/fundamentals/part-8-modern-redux.md 39.74KB
  99. redux-5.0.0-alpha.6/docs/tutorials/quick-start.md 8.79KB
  100. redux-5.0.0-alpha.6/docs/tutorials/tutorials-index.md 1.85KB
  101. redux-5.0.0-alpha.6/docs/tutorials/typescript.md 7.92KB
  102. redux-5.0.0-alpha.6/docs/tutorials/videos.md 3.02KB
  103. redux-5.0.0-alpha.6/docs/understanding/
  104. redux-5.0.0-alpha.6/docs/understanding/history-and-design/
  105. redux-5.0.0-alpha.6/docs/understanding/history-and-design/PriorArt.md 6.95KB
  106. redux-5.0.0-alpha.6/docs/understanding/history-and-design/middleware.md 17.28KB
  107. redux-5.0.0-alpha.6/docs/understanding/thinking-in-redux/
  108. redux-5.0.0-alpha.6/docs/understanding/thinking-in-redux/Glossary.md 8.15KB
  109. redux-5.0.0-alpha.6/docs/understanding/thinking-in-redux/Motivation.md 2.41KB
  110. redux-5.0.0-alpha.6/docs/understanding/thinking-in-redux/ThreePrinciples.md 3.3KB
  111. redux-5.0.0-alpha.6/docs/usage/
  112. redux-5.0.0-alpha.6/docs/usage/CodeSplitting.md 5.26KB
  113. redux-5.0.0-alpha.6/docs/usage/ConfiguringYourStore.md 14.48KB
  114. redux-5.0.0-alpha.6/docs/usage/ImplementingUndoHistory.md 15.41KB
  115. redux-5.0.0-alpha.6/docs/usage/IsolatingSubapps.md 2.57KB
  116. redux-5.0.0-alpha.6/docs/usage/ReducingBoilerplate.md 17.27KB
  117. redux-5.0.0-alpha.6/docs/usage/ServerRendering.md 15.21KB
  118. redux-5.0.0-alpha.6/docs/usage/Troubleshooting.md 6.5KB
  119. redux-5.0.0-alpha.6/docs/usage/UsageWithTypescript.md 26.19KB
  120. redux-5.0.0-alpha.6/docs/usage/UsingObjectSpreadOperator.md 3.49KB
  121. redux-5.0.0-alpha.6/docs/usage/WritingCustomMiddleware.md 8.79KB
  122. redux-5.0.0-alpha.6/docs/usage/WritingTests.mdx 34.92KB
  123. redux-5.0.0-alpha.6/docs/usage/deriving-data-selectors.md 32.56KB
  124. redux-5.0.0-alpha.6/docs/usage/index.md 1.48KB
  125. redux-5.0.0-alpha.6/docs/usage/migrating-to-modern-redux.mdx 40.04KB
  126. redux-5.0.0-alpha.6/docs/usage/side-effects-approaches.mdx 24.7KB
  127. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/
  128. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/BasicReducerStructure.md 5.08KB
  129. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/BeyondCombineReducers.md 6.06KB
  130. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/ImmutableUpdatePatterns.md 8.55KB
  131. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/InitializingState.md 6.6KB
  132. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/NormalizingStateShape.md 9.46KB
  133. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/PrerequisiteConcepts.md 5.7KB
  134. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/RefactoringReducersExample.md 11.86KB
  135. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/ReusingReducerLogic.md 7KB
  136. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/SplittingReducerLogic.md 3.89KB
  137. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/StructuringReducers.md 2.85KB
  138. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/UpdatingNormalizedData.md 10.07KB
  139. redux-5.0.0-alpha.6/docs/usage/structuring-reducers/UsingCombineReducers.md 6.13KB
  140. redux-5.0.0-alpha.6/docs/usage/writing-logic-thunks.mdx 24.38KB
  141. redux-5.0.0-alpha.6/docs/yarn.lock 84.97KB
  142. redux-5.0.0-alpha.6/errors.json 3.1KB
  143. redux-5.0.0-alpha.6/examples/
  144. redux-5.0.0-alpha.6/examples/README.md 124B
  145. redux-5.0.0-alpha.6/examples/async/
  146. redux-5.0.0-alpha.6/examples/async/.gitignore 155B
  147. redux-5.0.0-alpha.6/examples/async/README.md 289B
  148. redux-5.0.0-alpha.6/examples/async/package-lock.json 1.53MB
  149. redux-5.0.0-alpha.6/examples/async/package.json 623B
  150. redux-5.0.0-alpha.6/examples/async/public/
  151. redux-5.0.0-alpha.6/examples/async/public/index.html 634B
  152. redux-5.0.0-alpha.6/examples/async/src/
  153. redux-5.0.0-alpha.6/examples/async/src/actions/
  154. redux-5.0.0-alpha.6/examples/async/src/actions/index.js 1.24KB
  155. redux-5.0.0-alpha.6/examples/async/src/components/
  156. redux-5.0.0-alpha.6/examples/async/src/components/Picker.js 570B
  157. redux-5.0.0-alpha.6/examples/async/src/components/Posts.js 260B
  158. redux-5.0.0-alpha.6/examples/async/src/containers/
  159. redux-5.0.0-alpha.6/examples/async/src/containers/App.js 2.41KB
  160. redux-5.0.0-alpha.6/examples/async/src/index.js 581B
  161. redux-5.0.0-alpha.6/examples/async/src/reducers/
  162. redux-5.0.0-alpha.6/examples/async/src/reducers/index.js 1.28KB
  163. redux-5.0.0-alpha.6/examples/counter-ts/
  164. redux-5.0.0-alpha.6/examples/counter-ts/.gitignore 310B
  165. redux-5.0.0-alpha.6/examples/counter-ts/README.md 2.17KB
  166. redux-5.0.0-alpha.6/examples/counter-ts/package.json 1.03KB
  167. redux-5.0.0-alpha.6/examples/counter-ts/public/
  168. redux-5.0.0-alpha.6/examples/counter-ts/public/favicon.ico 3.5KB
  169. redux-5.0.0-alpha.6/examples/counter-ts/public/index.html 1.69KB
  170. redux-5.0.0-alpha.6/examples/counter-ts/public/logo.svg 1.1KB
  171. redux-5.0.0-alpha.6/examples/counter-ts/public/logo192.png 4.06KB
  172. redux-5.0.0-alpha.6/examples/counter-ts/public/logo512.png 11.78KB
  173. redux-5.0.0-alpha.6/examples/counter-ts/public/manifest.json 492B
  174. redux-5.0.0-alpha.6/examples/counter-ts/public/robots.txt 67B
  175. redux-5.0.0-alpha.6/examples/counter-ts/src/
  176. redux-5.0.0-alpha.6/examples/counter-ts/src/App.css 582B
  177. redux-5.0.0-alpha.6/examples/counter-ts/src/App.test.tsx 372B
  178. redux-5.0.0-alpha.6/examples/counter-ts/src/App.tsx 1.41KB
  179. redux-5.0.0-alpha.6/examples/counter-ts/src/app/
  180. redux-5.0.0-alpha.6/examples/counter-ts/src/app/hooks.ts 350B
  181. redux-5.0.0-alpha.6/examples/counter-ts/src/app/store.ts 447B
  182. redux-5.0.0-alpha.6/examples/counter-ts/src/features/
  183. redux-5.0.0-alpha.6/examples/counter-ts/src/features/counter/
  184. redux-5.0.0-alpha.6/examples/counter-ts/src/features/counter/Counter.module.css 1.26KB
  185. redux-5.0.0-alpha.6/examples/counter-ts/src/features/counter/Counter.tsx 1.73KB
  186. redux-5.0.0-alpha.6/examples/counter-ts/src/features/counter/counterAPI.ts 214B
  187. redux-5.0.0-alpha.6/examples/counter-ts/src/features/counter/counterSlice.spec.ts 852B
  188. redux-5.0.0-alpha.6/examples/counter-ts/src/features/counter/counterSlice.ts 3.02KB
  189. redux-5.0.0-alpha.6/examples/counter-ts/src/index.css 366B
  190. redux-5.0.0-alpha.6/examples/counter-ts/src/index.tsx 687B
  191. redux-5.0.0-alpha.6/examples/counter-ts/src/react-app-env.d.ts 40B
  192. redux-5.0.0-alpha.6/examples/counter-ts/src/reportWebVitals.ts 425B
  193. redux-5.0.0-alpha.6/examples/counter-ts/src/setupTests.ts 255B
  194. redux-5.0.0-alpha.6/examples/counter-ts/tsconfig.json 535B
  195. redux-5.0.0-alpha.6/examples/counter-vanilla/
  196. redux-5.0.0-alpha.6/examples/counter-vanilla/README.md 796B
  197. redux-5.0.0-alpha.6/examples/counter-vanilla/index.html 1.76KB
  198. redux-5.0.0-alpha.6/examples/counter-vanilla/package-lock.json 593.25KB
  199. redux-5.0.0-alpha.6/examples/counter-vanilla/package.json 327B
  200. redux-5.0.0-alpha.6/examples/counter/
  201. redux-5.0.0-alpha.6/examples/counter/.gitignore 310B
  202. redux-5.0.0-alpha.6/examples/counter/README.md 2.17KB
  203. redux-5.0.0-alpha.6/examples/counter/package.json 900B
  204. redux-5.0.0-alpha.6/examples/counter/public/
  205. redux-5.0.0-alpha.6/examples/counter/public/favicon.ico 3.5KB
  206. redux-5.0.0-alpha.6/examples/counter/public/index.html 1.69KB
  207. redux-5.0.0-alpha.6/examples/counter/public/logo.svg 1.1KB
  208. redux-5.0.0-alpha.6/examples/counter/public/logo192.png 4.06KB
  209. redux-5.0.0-alpha.6/examples/counter/public/logo512.png 11.78KB
  210. redux-5.0.0-alpha.6/examples/counter/public/manifest.json 492B
  211. redux-5.0.0-alpha.6/examples/counter/public/robots.txt 57B
  212. redux-5.0.0-alpha.6/examples/counter/src/
  213. redux-5.0.0-alpha.6/examples/counter/src/App.css 582B
  214. redux-5.0.0-alpha.6/examples/counter/src/App.js 1.41KB
  215. redux-5.0.0-alpha.6/examples/counter/src/App.test.js 365B
  216. redux-5.0.0-alpha.6/examples/counter/src/app/
  217. redux-5.0.0-alpha.6/examples/counter/src/app/store.js 204B
  218. redux-5.0.0-alpha.6/examples/counter/src/features/
  219. redux-5.0.0-alpha.6/examples/counter/src/features/counter/
  220. redux-5.0.0-alpha.6/examples/counter/src/features/counter/Counter.js 1.72KB
  221. redux-5.0.0-alpha.6/examples/counter/src/features/counter/Counter.module.css 1.26KB
  222. redux-5.0.0-alpha.6/examples/counter/src/features/counter/counterAPI.js 196B
  223. redux-5.0.0-alpha.6/examples/counter/src/features/counter/counterSlice.js 2.68KB
  224. redux-5.0.0-alpha.6/examples/counter/src/features/counter/counterSlice.spec.js 822B
  225. redux-5.0.0-alpha.6/examples/counter/src/index.css 366B
  226. redux-5.0.0-alpha.6/examples/counter/src/index.js 686B
  227. redux-5.0.0-alpha.6/examples/counter/src/reportWebVitals.js 362B
  228. redux-5.0.0-alpha.6/examples/counter/src/setupTests.js 255B
  229. redux-5.0.0-alpha.6/examples/real-world/
  230. redux-5.0.0-alpha.6/examples/real-world/.gitignore 155B
  231. redux-5.0.0-alpha.6/examples/real-world/README.md 294B
  232. redux-5.0.0-alpha.6/examples/real-world/package-lock.json 1.6MB
  233. redux-5.0.0-alpha.6/examples/real-world/package.json 859B
  234. redux-5.0.0-alpha.6/examples/real-world/public/
  235. redux-5.0.0-alpha.6/examples/real-world/public/index.html 624B
  236. redux-5.0.0-alpha.6/examples/real-world/src/
  237. redux-5.0.0-alpha.6/examples/real-world/src/actions/
  238. redux-5.0.0-alpha.6/examples/real-world/src/actions/index.js 3.71KB
  239. redux-5.0.0-alpha.6/examples/real-world/src/components/
  240. redux-5.0.0-alpha.6/examples/real-world/src/components/Explore.js 1.49KB
  241. redux-5.0.0-alpha.6/examples/real-world/src/components/List.js 1.32KB
  242. redux-5.0.0-alpha.6/examples/real-world/src/components/Repo.js 736B
  243. redux-5.0.0-alpha.6/examples/real-world/src/components/User.js 613B
  244. redux-5.0.0-alpha.6/examples/real-world/src/containers/
  245. redux-5.0.0-alpha.6/examples/real-world/src/containers/App.js 1.53KB
  246. redux-5.0.0-alpha.6/examples/real-world/src/containers/DevTools.js 337B
  247. redux-5.0.0-alpha.6/examples/real-world/src/containers/RepoPage.js 2.54KB
  248. redux-5.0.0-alpha.6/examples/real-world/src/containers/Root.dev.js 639B
  249. redux-5.0.0-alpha.6/examples/real-world/src/containers/Root.js 139B
  250. redux-5.0.0-alpha.6/examples/real-world/src/containers/Root.prod.js 585B
  251. redux-5.0.0-alpha.6/examples/real-world/src/containers/UserPage.js 2.5KB
  252. redux-5.0.0-alpha.6/examples/real-world/src/index.js 337B
  253. redux-5.0.0-alpha.6/examples/real-world/src/middleware/
  254. redux-5.0.0-alpha.6/examples/real-world/src/middleware/api.js 3.64KB
  255. redux-5.0.0-alpha.6/examples/real-world/src/reducers/
  256. redux-5.0.0-alpha.6/examples/real-world/src/reducers/index.js 1.29KB
  257. redux-5.0.0-alpha.6/examples/real-world/src/reducers/paginate.js 1.74KB
  258. redux-5.0.0-alpha.6/examples/real-world/src/store/
  259. redux-5.0.0-alpha.6/examples/real-world/src/store/configureStore.dev.js 694B
  260. redux-5.0.0-alpha.6/examples/real-world/src/store/configureStore.js 159B
  261. redux-5.0.0-alpha.6/examples/real-world/src/store/configureStore.prod.js 310B
  262. redux-5.0.0-alpha.6/examples/shopping-cart/
  263. redux-5.0.0-alpha.6/examples/shopping-cart/.gitignore 155B
  264. redux-5.0.0-alpha.6/examples/shopping-cart/README.md 297B
  265. redux-5.0.0-alpha.6/examples/shopping-cart/package-lock.json 1.61MB
  266. redux-5.0.0-alpha.6/examples/shopping-cart/package.json 680B
  267. redux-5.0.0-alpha.6/examples/shopping-cart/public/
  268. redux-5.0.0-alpha.6/examples/shopping-cart/public/index.html 642B
  269. redux-5.0.0-alpha.6/examples/shopping-cart/src/
  270. redux-5.0.0-alpha.6/examples/shopping-cart/src/actions/
  271. redux-5.0.0-alpha.6/examples/shopping-cart/src/actions/index.js 936B
  272. redux-5.0.0-alpha.6/examples/shopping-cart/src/api/
  273. redux-5.0.0-alpha.6/examples/shopping-cart/src/api/products.json 229B
  274. redux-5.0.0-alpha.6/examples/shopping-cart/src/api/shop.js 294B
  275. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/
  276. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/Cart.js 848B
  277. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/Cart.spec.js 1.73KB
  278. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/Product.js 326B
  279. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/Product.spec.js 710B
  280. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/ProductItem.js 760B
  281. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/ProductItem.spec.js 1.66KB
  282. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/ProductsList.js 300B
  283. redux-5.0.0-alpha.6/examples/shopping-cart/src/components/ProductsList.spec.js 721B
  284. redux-5.0.0-alpha.6/examples/shopping-cart/src/constants/
  285. redux-5.0.0-alpha.6/examples/shopping-cart/src/constants/ActionTypes.js 245B
  286. redux-5.0.0-alpha.6/examples/shopping-cart/src/containers/
  287. redux-5.0.0-alpha.6/examples/shopping-cart/src/containers/App.js 285B
  288. redux-5.0.0-alpha.6/examples/shopping-cart/src/containers/CartContainer.js 895B
  289. redux-5.0.0-alpha.6/examples/shopping-cart/src/containers/ProductsContainer.js 1.02KB
  290. redux-5.0.0-alpha.6/examples/shopping-cart/src/index.js 660B
  291. redux-5.0.0-alpha.6/examples/shopping-cart/src/reducers/
  292. redux-5.0.0-alpha.6/examples/shopping-cart/src/reducers/cart.js 1.17KB
  293. redux-5.0.0-alpha.6/examples/shopping-cart/src/reducers/cart.spec.js 1.15KB
  294. redux-5.0.0-alpha.6/examples/shopping-cart/src/reducers/index.js 731B
  295. redux-5.0.0-alpha.6/examples/shopping-cart/src/reducers/index.spec.js 1.54KB
  296. redux-5.0.0-alpha.6/examples/shopping-cart/src/reducers/products.js 1.16KB
  297. redux-5.0.0-alpha.6/examples/shopping-cart/src/reducers/products.spec.js 1.84KB
  298. redux-5.0.0-alpha.6/examples/shopping-cart/src/setupTests.js 120B
  299. redux-5.0.0-alpha.6/examples/testAll.js 1.22KB
  300. redux-5.0.0-alpha.6/examples/todomvc/
  301. redux-5.0.0-alpha.6/examples/todomvc/.gitignore 155B
  302. redux-5.0.0-alpha.6/examples/todomvc/README.md 291B
  303. redux-5.0.0-alpha.6/examples/todomvc/package-lock.json 1.57MB
  304. redux-5.0.0-alpha.6/examples/todomvc/package.json 674B
  305. redux-5.0.0-alpha.6/examples/todomvc/public/
  306. redux-5.0.0-alpha.6/examples/todomvc/public/index.html 652B
  307. redux-5.0.0-alpha.6/examples/todomvc/src/
  308. redux-5.0.0-alpha.6/examples/todomvc/src/actions/
  309. redux-5.0.0-alpha.6/examples/todomvc/src/actions/index.js 564B
  310. redux-5.0.0-alpha.6/examples/todomvc/src/actions/index.spec.js 1.13KB
  311. redux-5.0.0-alpha.6/examples/todomvc/src/components/
  312. redux-5.0.0-alpha.6/examples/todomvc/src/components/App.js 215B
  313. redux-5.0.0-alpha.6/examples/todomvc/src/components/App.spec.js 795B
  314. redux-5.0.0-alpha.6/examples/todomvc/src/components/Footer.js 1.21KB
  315. redux-5.0.0-alpha.6/examples/todomvc/src/components/Footer.spec.js 3.06KB
  316. redux-5.0.0-alpha.6/examples/todomvc/src/components/Header.js 472B
  317. redux-5.0.0-alpha.6/examples/todomvc/src/components/Header.spec.js 1.27KB
  318. redux-5.0.0-alpha.6/examples/todomvc/src/components/Link.js 522B
  319. redux-5.0.0-alpha.6/examples/todomvc/src/components/Link.spec.js 1.04KB
  320. redux-5.0.0-alpha.6/examples/todomvc/src/components/MainSection.js 988B
  321. redux-5.0.0-alpha.6/examples/todomvc/src/components/MainSection.spec.js 3.09KB
  322. redux-5.0.0-alpha.6/examples/todomvc/src/components/TodoItem.js 1.6KB
  323. redux-5.0.0-alpha.6/examples/todomvc/src/components/TodoItem.spec.js 3.34KB
  324. redux-5.0.0-alpha.6/examples/todomvc/src/components/TodoList.js 571B
  325. redux-5.0.0-alpha.6/examples/todomvc/src/components/TodoList.spec.js 1.32KB
  326. redux-5.0.0-alpha.6/examples/todomvc/src/components/TodoTextInput.js 1.17KB
  327. redux-5.0.0-alpha.6/examples/todomvc/src/components/TodoTextInput.spec.js 2.43KB
  328. redux-5.0.0-alpha.6/examples/todomvc/src/constants/
  329. redux-5.0.0-alpha.6/examples/todomvc/src/constants/ActionTypes.js 323B
  330. redux-5.0.0-alpha.6/examples/todomvc/src/constants/TodoFilters.js 123B
  331. redux-5.0.0-alpha.6/examples/todomvc/src/containers/
  332. redux-5.0.0-alpha.6/examples/todomvc/src/containers/FilterLink.js 437B
  333. redux-5.0.0-alpha.6/examples/todomvc/src/containers/Header.js 168B
  334. redux-5.0.0-alpha.6/examples/todomvc/src/containers/MainSection.js 532B
  335. redux-5.0.0-alpha.6/examples/todomvc/src/containers/VisibleTodoList.js 514B
  336. redux-5.0.0-alpha.6/examples/todomvc/src/index.js 374B
  337. redux-5.0.0-alpha.6/examples/todomvc/src/reducers/
  338. redux-5.0.0-alpha.6/examples/todomvc/src/reducers/index.js 216B
  339. redux-5.0.0-alpha.6/examples/todomvc/src/reducers/todos.js 1.22KB
  340. redux-5.0.0-alpha.6/examples/todomvc/src/reducers/todos.spec.js 5.05KB
  341. redux-5.0.0-alpha.6/examples/todomvc/src/reducers/visibilityFilter.js 329B
  342. redux-5.0.0-alpha.6/examples/todomvc/src/selectors/
  343. redux-5.0.0-alpha.6/examples/todomvc/src/selectors/index.js 822B
  344. redux-5.0.0-alpha.6/examples/todos-with-undo/
  345. redux-5.0.0-alpha.6/examples/todos-with-undo/.gitignore 155B
  346. redux-5.0.0-alpha.6/examples/todos-with-undo/README.md 299B
  347. redux-5.0.0-alpha.6/examples/todos-with-undo/package-lock.json 1.57MB
  348. redux-5.0.0-alpha.6/examples/todos-with-undo/package.json 602B
  349. redux-5.0.0-alpha.6/examples/todos-with-undo/public/
  350. redux-5.0.0-alpha.6/examples/todos-with-undo/public/index.html 644B
  351. redux-5.0.0-alpha.6/examples/todos-with-undo/src/
  352. redux-5.0.0-alpha.6/examples/todos-with-undo/src/actions/
  353. redux-5.0.0-alpha.6/examples/todos-with-undo/src/actions/index.js 270B
  354. redux-5.0.0-alpha.6/examples/todos-with-undo/src/components/
  355. redux-5.0.0-alpha.6/examples/todos-with-undo/src/components/App.js 338B
  356. redux-5.0.0-alpha.6/examples/todos-with-undo/src/components/Footer.js 387B
  357. redux-5.0.0-alpha.6/examples/todos-with-undo/src/components/Link.js 491B
  358. redux-5.0.0-alpha.6/examples/todos-with-undo/src/components/Todo.js 399B
  359. redux-5.0.0-alpha.6/examples/todos-with-undo/src/components/TodoList.js 571B
  360. redux-5.0.0-alpha.6/examples/todos-with-undo/src/containers/
  361. redux-5.0.0-alpha.6/examples/todos-with-undo/src/containers/AddTodo.js 581B
  362. redux-5.0.0-alpha.6/examples/todos-with-undo/src/containers/FilterLink.js 466B
  363. redux-5.0.0-alpha.6/examples/todos-with-undo/src/containers/UndoRedo.js 679B
  364. redux-5.0.0-alpha.6/examples/todos-with-undo/src/containers/VisibleTodoList.js 730B
  365. redux-5.0.0-alpha.6/examples/todos-with-undo/src/index.js 339B
  366. redux-5.0.0-alpha.6/examples/todos-with-undo/src/reducers/
  367. redux-5.0.0-alpha.6/examples/todos-with-undo/src/reducers/index.js 208B
  368. redux-5.0.0-alpha.6/examples/todos-with-undo/src/reducers/todos.js 769B
  369. redux-5.0.0-alpha.6/examples/todos-with-undo/src/reducers/visibilityFilter.js 216B
  370. redux-5.0.0-alpha.6/examples/todos/
  371. redux-5.0.0-alpha.6/examples/todos/.gitignore 155B
  372. redux-5.0.0-alpha.6/examples/todos/README.md 289B
  373. redux-5.0.0-alpha.6/examples/todos/package-lock.json 1.57MB
  374. redux-5.0.0-alpha.6/examples/todos/package.json 546B
  375. redux-5.0.0-alpha.6/examples/todos/public/
  376. redux-5.0.0-alpha.6/examples/todos/public/index.html 634B
  377. redux-5.0.0-alpha.6/examples/todos/src/
  378. redux-5.0.0-alpha.6/examples/todos/src/actions/
  379. redux-5.0.0-alpha.6/examples/todos/src/actions/index.js 391B
  380. redux-5.0.0-alpha.6/examples/todos/src/actions/index.spec.js 618B
  381. redux-5.0.0-alpha.6/examples/todos/src/components/
  382. redux-5.0.0-alpha.6/examples/todos/src/components/App.js 275B
  383. redux-5.0.0-alpha.6/examples/todos/src/components/Footer.js 474B
  384. redux-5.0.0-alpha.6/examples/todos/src/components/Link.js 425B
  385. redux-5.0.0-alpha.6/examples/todos/src/components/Todo.js 399B
  386. redux-5.0.0-alpha.6/examples/todos/src/components/TodoList.js 568B
  387. redux-5.0.0-alpha.6/examples/todos/src/containers/
  388. redux-5.0.0-alpha.6/examples/todos/src/containers/AddTodo.js 543B
  389. redux-5.0.0-alpha.6/examples/todos/src/containers/FilterLink.js 425B
  390. redux-5.0.0-alpha.6/examples/todos/src/containers/VisibleTodoList.js 805B
  391. redux-5.0.0-alpha.6/examples/todos/src/index.js 347B
  392. redux-5.0.0-alpha.6/examples/todos/src/reducers/
  393. redux-5.0.0-alpha.6/examples/todos/src/reducers/index.js 183B
  394. redux-5.0.0-alpha.6/examples/todos/src/reducers/todos.js 450B
  395. redux-5.0.0-alpha.6/examples/todos/src/reducers/todos.spec.js 1.87KB
  396. redux-5.0.0-alpha.6/examples/todos/src/reducers/visibilityFilter.js 280B
  397. redux-5.0.0-alpha.6/examples/tree-view/
  398. redux-5.0.0-alpha.6/examples/tree-view/.gitignore 155B
  399. redux-5.0.0-alpha.6/examples/tree-view/README.md 293B
  400. redux-5.0.0-alpha.6/examples/tree-view/package-lock.json 1.6MB
  401. redux-5.0.0-alpha.6/examples/tree-view/package.json 616B
  402. redux-5.0.0-alpha.6/examples/tree-view/public/
  403. redux-5.0.0-alpha.6/examples/tree-view/public/index.html 638B
  404. redux-5.0.0-alpha.6/examples/tree-view/src/
  405. redux-5.0.0-alpha.6/examples/tree-view/src/actions/
  406. redux-5.0.0-alpha.6/examples/tree-view/src/actions/index.js 637B
  407. redux-5.0.0-alpha.6/examples/tree-view/src/containers/
  408. redux-5.0.0-alpha.6/examples/tree-view/src/containers/Node.js 1.71KB
  409. redux-5.0.0-alpha.6/examples/tree-view/src/containers/Node.spec.js 2.55KB
  410. redux-5.0.0-alpha.6/examples/tree-view/src/generateTree.js 352B
  411. redux-5.0.0-alpha.6/examples/tree-view/src/index.js 425B
  412. redux-5.0.0-alpha.6/examples/tree-view/src/reducers/
  413. redux-5.0.0-alpha.6/examples/tree-view/src/reducers/index.js 1.4KB
  414. redux-5.0.0-alpha.6/examples/tree-view/src/reducers/index.spec.js 3.25KB
  415. redux-5.0.0-alpha.6/examples/tree-view/src/setupTests.js 120B
  416. redux-5.0.0-alpha.6/examples/universal/
  417. redux-5.0.0-alpha.6/examples/universal/.babelrc 36B
  418. redux-5.0.0-alpha.6/examples/universal/README.md 307B
  419. redux-5.0.0-alpha.6/examples/universal/client/
  420. redux-5.0.0-alpha.6/examples/universal/client/index.js 448B
  421. redux-5.0.0-alpha.6/examples/universal/common/
  422. redux-5.0.0-alpha.6/examples/universal/common/actions/
  423. redux-5.0.0-alpha.6/examples/universal/common/actions/index.js 640B
  424. redux-5.0.0-alpha.6/examples/universal/common/api/
  425. redux-5.0.0-alpha.6/examples/universal/common/api/counter.js 445B
  426. redux-5.0.0-alpha.6/examples/universal/common/components/
  427. redux-5.0.0-alpha.6/examples/universal/common/components/Counter.js 710B
  428. redux-5.0.0-alpha.6/examples/universal/common/containers/
  429. redux-5.0.0-alpha.6/examples/universal/common/containers/App.js 407B
  430. redux-5.0.0-alpha.6/examples/universal/common/reducers/
  431. redux-5.0.0-alpha.6/examples/universal/common/reducers/counter.js 360B
  432. redux-5.0.0-alpha.6/examples/universal/common/reducers/index.js 152B
  433. redux-5.0.0-alpha.6/examples/universal/common/store/
  434. redux-5.0.0-alpha.6/examples/universal/common/store/configureStore.js 490B
  435. redux-5.0.0-alpha.6/examples/universal/index.js 20B
  436. redux-5.0.0-alpha.6/examples/universal/package-lock.json 390.81KB
  437. redux-5.0.0-alpha.6/examples/universal/package.json 817B
  438. redux-5.0.0-alpha.6/examples/universal/server/
  439. redux-5.0.0-alpha.6/examples/universal/server/index.js 46B
  440. redux-5.0.0-alpha.6/examples/universal/server/server.js 2.3KB
  441. redux-5.0.0-alpha.6/examples/universal/webpack.config.js 644B
  442. redux-5.0.0-alpha.6/logo/
  443. redux-5.0.0-alpha.6/logo/README.md 1.75KB
  444. redux-5.0.0-alpha.6/logo/apple-touch-icon.png 9.1KB
  445. redux-5.0.0-alpha.6/logo/favicon.ico 4.19KB
  446. redux-5.0.0-alpha.6/logo/logo-title-dark.png 69.74KB
  447. redux-5.0.0-alpha.6/logo/logo-title-light.png 71.63KB
  448. redux-5.0.0-alpha.6/logo/logo.png 192.31KB
  449. redux-5.0.0-alpha.6/logo/logo.svg 1.09KB
  450. redux-5.0.0-alpha.6/netlify.toml 518B
  451. redux-5.0.0-alpha.6/package.json 2.42KB
  452. redux-5.0.0-alpha.6/rollup.config.js 1.92KB
  453. redux-5.0.0-alpha.6/scripts/
  454. redux-5.0.0-alpha.6/scripts/mangleErrors.cjs 5.44KB
  455. redux-5.0.0-alpha.6/src/
  456. redux-5.0.0-alpha.6/src/applyMiddleware.ts 3KB
  457. redux-5.0.0-alpha.6/src/bindActionCreators.ts 2.72KB
  458. redux-5.0.0-alpha.6/src/combineReducers.ts 6.76KB
  459. redux-5.0.0-alpha.6/src/compose.ts 1.53KB
  460. redux-5.0.0-alpha.6/src/createStore.ts 16.97KB
  461. redux-5.0.0-alpha.6/src/index.ts 1.08KB
  462. redux-5.0.0-alpha.6/src/types/
  463. redux-5.0.0-alpha.6/src/types/actions.ts 2.2KB
  464. redux-5.0.0-alpha.6/src/types/middleware.ts 1.06KB
  465. redux-5.0.0-alpha.6/src/types/reducers.ts 3.43KB
  466. redux-5.0.0-alpha.6/src/types/store.ts 8.82KB
  467. redux-5.0.0-alpha.6/src/utils/
  468. redux-5.0.0-alpha.6/src/utils/actionTypes.ts 600B
  469. redux-5.0.0-alpha.6/src/utils/formatProdErrorMessage.ts 526B
  470. redux-5.0.0-alpha.6/src/utils/isPlainObject.ts 390B
  471. redux-5.0.0-alpha.6/src/utils/kindOf.ts 1.51KB
  472. redux-5.0.0-alpha.6/src/utils/symbol-observable.ts 236B
  473. redux-5.0.0-alpha.6/src/utils/warning.ts 589B
  474. redux-5.0.0-alpha.6/test/
  475. redux-5.0.0-alpha.6/test/applyMiddleware.spec.ts 4KB
  476. redux-5.0.0-alpha.6/test/bindActionCreators.spec.ts 3.65KB
  477. redux-5.0.0-alpha.6/test/combineReducers.spec.ts 11.36KB
  478. redux-5.0.0-alpha.6/test/compose.spec.ts 2.11KB
  479. redux-5.0.0-alpha.6/test/createStore.spec.ts 24.31KB
  480. redux-5.0.0-alpha.6/test/helpers/
  481. redux-5.0.0-alpha.6/test/helpers/actionCreators.ts 1.42KB
  482. redux-5.0.0-alpha.6/test/helpers/actionTypes.ts 353B
  483. redux-5.0.0-alpha.6/test/helpers/middleware.ts 277B
  484. redux-5.0.0-alpha.6/test/helpers/reducers.ts 2.32KB
  485. redux-5.0.0-alpha.6/test/tsconfig.json 598B
  486. redux-5.0.0-alpha.6/test/typescript/
  487. redux-5.0.0-alpha.6/test/typescript/.eslintrc.cjs 165B
  488. redux-5.0.0-alpha.6/test/typescript/actionCreators.ts 1.51KB
  489. redux-5.0.0-alpha.6/test/typescript/actions.ts 695B
  490. redux-5.0.0-alpha.6/test/typescript/compose.ts 1.4KB
  491. redux-5.0.0-alpha.6/test/typescript/dispatch.ts 1013B
  492. redux-5.0.0-alpha.6/test/typescript/enhancers.ts 9.47KB
  493. redux-5.0.0-alpha.6/test/typescript/injectedDispatch.ts 1.86KB
  494. redux-5.0.0-alpha.6/test/typescript/middleware.ts 5.17KB
  495. redux-5.0.0-alpha.6/test/typescript/reducers.ts 6.07KB
  496. redux-5.0.0-alpha.6/test/typescript/store.ts 4.51KB
  497. redux-5.0.0-alpha.6/test/typescript/tsconfig.json 629B
  498. redux-5.0.0-alpha.6/test/utils/
  499. redux-5.0.0-alpha.6/test/utils/formatProdErrorMessage.spec.ts 368B
  500. redux-5.0.0-alpha.6/test/utils/isPlainObject.spec.ts 585B
  501. redux-5.0.0-alpha.6/test/utils/warning.spec.ts 1.14KB
  502. redux-5.0.0-alpha.6/tsconfig.json 662B
  503. redux-5.0.0-alpha.6/tsup.config.ts 1.81KB
  504. redux-5.0.0-alpha.6/vitest.config.ts 463B
  505. redux-5.0.0-alpha.6/website/
  506. redux-5.0.0-alpha.6/website/.gitignore 235B
  507. redux-5.0.0-alpha.6/website/README.md 705B
  508. redux-5.0.0-alpha.6/website/_redirects 11.4KB
  509. redux-5.0.0-alpha.6/website/docusaurus.config.js 5.11KB
  510. redux-5.0.0-alpha.6/website/package.json 1.09KB
  511. redux-5.0.0-alpha.6/website/sidebars.js 4.62KB
  512. redux-5.0.0-alpha.6/website/src/
  513. redux-5.0.0-alpha.6/website/src/css/
  514. redux-5.0.0-alpha.6/website/src/css/custom.css 6.34KB
  515. redux-5.0.0-alpha.6/website/src/js/
  516. redux-5.0.0-alpha.6/website/src/js/monokaiTheme.js 1.07KB
  517. redux-5.0.0-alpha.6/website/src/pages/
  518. redux-5.0.0-alpha.6/website/src/pages/errors.js 1.81KB
  519. redux-5.0.0-alpha.6/website/src/pages/index.js 11.13KB
  520. redux-5.0.0-alpha.6/website/src/pages/styles.module.css 1.12KB
  521. redux-5.0.0-alpha.6/website/static/
  522. redux-5.0.0-alpha.6/website/static/img/
  523. redux-5.0.0-alpha.6/website/static/img/cogs-solid.svg 2.53KB
  524. redux-5.0.0-alpha.6/website/static/img/cubes-solid.svg 813B
  525. redux-5.0.0-alpha.6/website/static/img/external-link-square-alt-solid.svg 623B
  526. redux-5.0.0-alpha.6/website/static/img/favicon/
  527. redux-5.0.0-alpha.6/website/static/img/favicon/favicon.ico 4.19KB
  528. redux-5.0.0-alpha.6/website/static/img/github-brands.svg 1.47KB
  529. redux-5.0.0-alpha.6/website/static/img/noun_Check_1870817.svg 302B
  530. redux-5.0.0-alpha.6/website/static/img/noun_debugging_1978252.svg 1.6KB
  531. redux-5.0.0-alpha.6/website/static/img/redux-logo-landscape.png 41.02KB
  532. redux-5.0.0-alpha.6/website/static/img/redux.svg 1.09KB
  533. redux-5.0.0-alpha.6/website/static/img/redux_white.svg 1.09KB
  534. redux-5.0.0-alpha.6/website/static/img/tutorials/
  535. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/
  536. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/ReduxAsyncDataFlowDiagram.gif 6.35MB
  537. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/ReduxDataFlowDiagram.gif 3.75MB
  538. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/api-slice-contents.png 116.94KB
  539. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-action-stacktrace.png 49.26KB
  540. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-cached-invalidation-refetching.png 122.17KB
  541. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-cached-requests.png 91.67KB
  542. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-done-clicking.png 40.82KB
  543. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-first-action.png 33.71KB
  544. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-initial.png 30.97KB
  545. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-posts-fulfilled.png 54.26KB
  546. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-posts-pending.png 22.15KB
  547. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/devtools-rtkq-cache.png 134.02KB
  548. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/disabled-posts-fetching.png 27.02KB
  549. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/example-initial-posts-list.png 20.38KB
  550. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/example-initial-posts.png 11.75KB
  551. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/example-postAdded-action.png 22.91KB
  552. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/notifications-initial.png 20.33KB
  553. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/notifications-new.png 24.31KB
  554. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/one-way-data-flow.png 24.51KB
  555. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/posts-unknownAuthor.png 12.09KB
  556. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/postslist-optimized.png 52.79KB
  557. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/postslist-rerender.png 46.66KB
  558. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/userpage-rerender.png 33.43KB
  559. redux-5.0.0-alpha.6/website/static/img/tutorials/essentials/working_post_list.png 50.72KB
  560. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/
  561. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/devtools-action-tab.png 29.74KB
  562. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/devtools-async-todoAdded-action.png 21.67KB
  563. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/devtools-async-todoAdded-diff.png 17.03KB
  564. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/devtools-diff-tab.png 15.64KB
  565. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/devtools-state-tab.png 21.51KB
  566. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/devtools-todosLoaded-action.png 46.62KB
  567. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/immutable-error.png 70.19KB
  568. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/initial-state-updates.png 23.01KB
  569. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/meaningOfLife-enhancer-logging.png 10.42KB
  570. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/print-middleware-logging.png 1.84KB
  571. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/sayhi-enhancer-logging.png 2KB
  572. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/todos-app-headerLoading.png 54.9KB
  573. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/todos-app-markedCompleted.png 58.64KB
  574. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/todos-app-screenshot.png 54.13KB
  575. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/todos-app-selectorFilters.png 51.83KB
  576. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/todos-app-showCompleted.png 51.26KB
  577. redux-5.0.0-alpha.6/website/static/img/tutorials/fundamentals/todos-app-todosLoaded.png 57.96KB
  578. redux-5.0.0-alpha.6/website/tsconfig.json 508B
  579. redux-5.0.0-alpha.6/website/yarn.lock 459.56KB
  580. redux-5.0.0-alpha.6/yarn.lock 225.51KB
0评论
提交 加载更多评论
其他资源 redux-5.0.0-rc.0.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-5.0.0-rc.1.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-5.0.0.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-5.0.1.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-5.0.0-beta.0.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-5.0.0-alpha.5.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-5.0.0-alpha.3.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management
redux-5.0.0-alpha.2.zip
一个可预测的全局状态管理的 JS 库 A JS library for predictable global state management