The Wayback Machine - https://web.archive.org/web/20201113140455/https://github.com/topics/redux
Skip to content
#

Redux

redux logo

Redux is an open source JavaScript library, designed to allow for state management of JavaScript applications. Inspired by Elm, Redux is a debugging tool and supports robust application data-flow architecture. Redux is frequently used in combination with React.

Here are 28,002 public repositories matching this topic...

Andarist
Andarist commented Jun 4, 2018

I've noticed that redux' docs got a nice lifting, thanks for the new version of GitBook. Would be nice to upgrade too.

Redux commit introducing the change - reduxjs/redux@b307091

We might want to postpone merging this though, because we don't want to update docs before releasing v1 and from what I understand new Gitbook comes with au

simison
simison commented Nov 4, 2020

Our login forms are on multiple pages and we can help autofill detect correct inputs with autocomplete="current-password" and autocomplete="username".

Explicitly defining an input element’s autocomplete value lets you support login workflows that couldn’t otherwise be detected by Password AutoFill’s heuristics. For example, the heuristics assume the user name and password inputs are on th

responsively-app
XVonRad
XVonRad commented Nov 7, 2020

🐞 bug report

✍️ Description

My page has non-english words. The spell checker is activated as soon as I open dev tools. The red squiggly red lines under unrecognized words ruin the page rendering. From then on only a full refresh will deactivate the spell checker.

Describe the solution you'd like

A setting where spell check can be turned on and off

✍️ Describe alterna

devhub
gnumoksha
gnumoksha commented Nov 19, 2019
$ chmod +x DevHub-0.98.5.AppImage
$ ./DevHub-0.98.5.AppImage
[74678:1119/111718.741581:FATAL:setuid_sandbox_host.cc(157)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /tmp/.mount_DevHubUcWLlF/chrome-sandbox is owned by root and has mode 4755.
[1]    74678 trace trap  ./D
a616781689
a616781689 commented Nov 28, 2019

看了fish-redux的todoList demo,发现里面连接全局状态的方法是使用visitor

visitor: (String path, Page<Object, dynamic> page) {
      /// 只有特定的范围的 Page 才需要建立和 AppStore 的连接关系
      /// 满足 Page<T> ,T 是 GlobalBaseState 的子类
      if (page.isTypeof<GlobalBaseState>()) {
        /// 建立 AppStore 驱动 PageStore 的单向数据连接
        /// 1. 参数1 AppStore
        /// 2. 参数2 当 AppStore.state 变化时, PageStore.state 该如何变化
     

Created by Dan Abramov and Andrew Clark

Released June 2, 2015

Repository
reactjs/redux
Website
redux.js.org
Wikipedia
Wikipedia

Related Topics

javascript react
You can’t perform that action at this time.