All Projects → danielstern → flux-redux

danielstern / flux-redux

Licence: other
An application implementing Flux and Redux with few other dependencies

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to flux-redux

Fluxxan
Fluxxan is an Android implementation of the Flux Architecture that combines concepts from both Fluxxor and Redux.
Stars: ✭ 80 (+233.33%)
Mutual labels:  flux, dispatcher
Fluorine
[UNMAINTAINED] Reactive state and side effect management for React using a single stream of actions
Stars: ✭ 287 (+1095.83%)
Mutual labels:  flux, dispatcher
Verge
🟣 Verge is a very tunable state-management engine on iOS App (UIKit / SwiftUI) and built-in ORM.
Stars: ✭ 273 (+1037.5%)
Mutual labels:  flux, dispatcher
General Store
Simple, flexible store implementation for Flux. #hubspot-open-source
Stars: ✭ 171 (+612.5%)
Mutual labels:  flux, dispatcher
k8s-gitops
No description or website provided.
Stars: ✭ 23 (-4.17%)
Mutual labels:  flux
realt
Realt is a new way to work with Redux inspired by Alt
Stars: ✭ 41 (+70.83%)
Mutual labels:  flux
openvpn-shapeshifter
This script will automatically guide you to install and configure your OpenVPN server with Shapeshifter Dispatcher (obfuscation) which will allow you to bypass the DPI blockage on OpenVPN. This setup will offer the users the freedom to choose between regular OpenVPN connection or obfuscated one, they actually can use both! OpenVPN is the VPN pro…
Stars: ✭ 59 (+145.83%)
Mutual labels:  dispatcher
react-store
Redux like store with React hooks and Context API
Stars: ✭ 16 (-33.33%)
Mutual labels:  flux
fluxiny
~1K implementation of flux architecture
Stars: ✭ 77 (+220.83%)
Mutual labels:  flux
plume2
🚀a lightweight React state container for web and app
Stars: ✭ 74 (+208.33%)
Mutual labels:  flux
AlphaGo.jl
AlphaGo Zero implementation using Flux.jl
Stars: ✭ 73 (+204.17%)
Mutual labels:  flux
nifi-influxdb-bundle
InfluxDB Processors For Apache NiFi
Stars: ✭ 30 (+25%)
Mutual labels:  flux
template-cluster-k3s
My highly opinionated template for deploying a single Kubernetes (k3s) cluster with Ansible and Terraform backed by Flux, SOPS, GitHub Actions, Renovate and more!
Stars: ✭ 861 (+3487.5%)
Mutual labels:  flux
burp-aem-scanner
Burp Scanner extension to fingerprint and actively scan instances of the Adobe Experience Manager CMS. It checks the website for common misconfigurations and security holes.
Stars: ✭ 60 (+150%)
Mutual labels:  dispatcher
redrock
Typesafe, reactive redux
Stars: ✭ 14 (-41.67%)
Mutual labels:  flux
nanoflux-fusion
Redux-like extension for Nanoflux
Stars: ✭ 15 (-37.5%)
Mutual labels:  flux
electron-RxDB
RxDB is a high-performance, observable object store built on top of SQLite & intended for database-driven Electron applications.
Stars: ✭ 68 (+183.33%)
Mutual labels:  flux
redux-reducer-async
Create redux reducers for async behaviors of multiple actions.
Stars: ✭ 14 (-41.67%)
Mutual labels:  flux
fluxml.github.io
Flux Website
Stars: ✭ 20 (-16.67%)
Mutual labels:  flux
DaggerFlux.jl
Distributed computation of differentiation pipelines to use multiple workers, devices, GPU, etc. since Julia wasn't fast enough already
Stars: ✭ 57 (+137.5%)
Mutual labels:  flux

Flux-Redux Exemplar

Getting started

To run application, run

npm install

Optional, globally install dev dependencies (recommended for Windows)

npm install -g webpack-dev-server webpack babel-preset-es2015 babel-plugin-transform-object-rest-spread babel-loader babel-core

Start the application

npm start

Finally, navigate to http://localhost:8080/ in your browser.

Structure

The application consists of three interconnected sub-applications with different implementations of Flux and Redux.

Control Panel

A basic form powered by a standards-compliant Flux implementation.

Tasks

A more advanced form based on the TodoMVC format, implementing a Flux ReduceStore. This form has undo functionality.

Message Board

A basic messaging tool similar to those found in most productivity apps. This sub-application implements Redux and contains asynchronous events.

Glossary

Flux https://github.com/facebook/flux

Though available to download as a popular GitHub repository, Flux is actually simple enough to be implemented from scratch in under thirty minutes. In Flux, data is held in stores whose data cannot be changed by outside components. The store can change the data inside itself, and does so by listening to events emitted by the dispatcher. Flux also implements a ReduceStore, which has functionality that is highly similar to a Redux application.

Facebook

An American company best known for the popular social media application. Developers working at Facebook, or who form part of the React community, are credited with creating Flux, as well as authoring and maintaining the React and Redux libraries. It has made an above-average contribution to the open source community.

Redux - https://github.com/reactjs/redux

A library which is growing in popularity at an extreme pace, Redux expands on the ReduceStore first implemented in Flux. Redux is more sophisticated than Flux, and is generally considered first when creating new applications. However, numerous contributors, notably Dan Abramov (credited with the invention of Redux), make a point of advising developers to seek more basic alternatives first, before using Redux.

Reducer

An idempotent function, a reducer will always return the same output given the same arguments. Reducers usually take two arguments, an existing state and the action. If the action concerns the reducer in question (there can be many reducers in an application) it creates a copy of the state, modifies it accordingly, and returns that. Reducers, which never modify state, form the heart of all Redux applications.

Store

A structure for storing data, of which multiple are usually implemented for a Flux application, and just one for a Redux application. Usually, the data inside a store can be freely accessed but can not be changed from outside the store. In Flux, the store subscribes to actions which it then processes internally. After processing these actions, it emits a change letting other components access the new data. In a ReduceStore, and in Flux, stores must implement a function called a Reducer which never mutates state.

####Dispatcher Functioning as an unremarkable event dispatcher, this is the component in a Flux application which every other component can have access to. Actions are sent to the the dispatcher before flowing down to other components of the application. In Redux, the dispatcher is built in to the store.

ReduceStore

A class which extends the Flux Store and implements a reducer. It emits changes automatically based on whether the reducer changes the state, and supports immutability and undo functionality well. Redux works very similarly to a Flux application implementing a ReduceStore.

React https://github.com/facebook/react

A library for generating highly performant views created by some of the same team members as Flux. Though they are often taught and implemented together, React is just one possible view renderer that can be used with Redux or Flux (This project uses vanilla JavaScript as the view engine in order to remain unopinionated about the choice of view renderer).

React-Redux

A library containing helper functions which manage the repetitive tasks required to integrate React with Redux. As both React and Redux enforce unidirectional data flow and immutability, they integrate well together. Such applications tend to benefit both from the high-performance of React and the easy debugging of Redux.

Angular-Redux

Another library for connecting Redux to a common MVC framework.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].