Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Reactjs101 | 3,840 | 3 years ago | 58 | other | JavaScript | |||||
從零開始學 ReactJS(ReactJS 101)是一本希望讓初學者一看就懂的 React 中文入門教學書,由淺入深學習 ReactJS 生態系 (Flux, Redux, React Router, ImmutableJS, React Native, Relay/GraphQL etc.)。 | ||||||||||
Nuclear Js | 2,134 | 150 | 35 | 5 years ago | 37 | September 21, 2016 | 27 | mit | JavaScript | |
Reactive Flux built with ImmutableJS data structures. Framework agnostic. | ||||||||||
React Quick Tutorial | 631 | 7 years ago | 8 | JavaScript | ||||||
:rocket: 讓你用最短時間,充分體會 React 的脈絡思維 | ||||||||||
React Way Immutable Flux | 229 | 8 years ago | 3 | mit | JavaScript | |||||
React.js way with ES6, Immutable.js and Flux | ||||||||||
React Surveyman | 142 | 8 years ago | 5 | bsd-2-clause | JavaScript | |||||
SurveyMan in React | ||||||||||
Angular2 Redux Store | 110 | 5 | 2 | 7 years ago | 9 | February 09, 2016 | 1 | TypeScript | ||
A minimalistic Redux store for Angular 2 | ||||||||||
React Flux Puzzle | 62 | 8 years ago | 3 | other | JavaScript | |||||
A puzzle game built with React + Rx.js + Immutable.js | ||||||||||
Iflux2 | 48 | 8 | 10 | 7 years ago | 31 | April 17, 2017 | 1 | bsd-3-clause | TypeScript | |
Reactive state container (based on immutable) for React or ReactNative, inspired by mapreduce. | ||||||||||
Flux Immutable Todomvc | 45 | 8 years ago | 3 | JavaScript | ||||||
Uses ImmutableJS as described in the presentation by @leebyron at React Conf 2015. | ||||||||||
Ballade | 45 | 1 | 2 | 4 years ago | 25 | December 07, 2017 | mit | JavaScript | ||
For unidirectional data flow. |
NuclearJS
Traditional Flux architecture built with ImmutableJS data structures.
https://optimizely.github.io/nuclear-js/
Simple Over Easy - The purpose of NuclearJS isn't to write the most expressive TodoMVC anyone's ever seen. The goal of NuclearJS is to provide a way to model data that is easy to reason about and decouple at very large scale.
Immutable - A means for less defensive programming, more predictability and better performance.
Functional - The framework should be implemented functionally wherever appropriate. This reduces incidental complexity and pairs well with Immutability.
Smallest Amount of State Possible - Using NuclearJS should encourage the modeling of your application state in the most minimal way possible.
Decoupled - A NuclearJS system should be able to function without any sort of UI or frontend. It should be backend/frontend agnostic and be able to run on a NodeJS server.
NuclearJS can be downloaded from npm.
npm install nuclear-js
All app state is in a singular immutable map, like Om. In development you can see your entire application state at every point in time thanks to awesome debugging tools built into NuclearJS.
State is not spread out through stores, instead stores are a declarative way of describing some top-level domain of your app state. For each key in the app state map a store declares the initial state of that key and how that piece of the app state reacts over time to actions dispatched on the flux system.
Stores are not reference-able nor have any getX
methods on them. Instead NuclearJS uses a functional lens concept called getters. In fact, the use of getters obviates the need for any store to know about another store, eliminating the confusing store.waitsFor
method found in other flux implementations.
NuclearJS is insanely efficient - change detection granularity is infinitesimal, you can even observe computed state where several pieces of the state map are combined together and run through a transform function. NuclearJS is smart enough to know when the value of any computed changes and only call its observer if and only if its value changed in a way that is orders of magnitude more efficient than traditional dirty checking. It does this by leveraging ImmutableJS data structure and using a state1 !== state2
reference comparison which runs in constant time.
Automatic data observation / rendering -- automatic re-rendering is built in for React in the form of a very lightweight mixin. It is also easily possible to build the same functionality for any UI framework such as VueJS, AngularJS and even Backbone.
NuclearJS is not a side-project, it's used as the default Flux implementation that powers all of Optimizely. It is well tested and will continue to be maintained for the foreseeable future. Our current codebase has over dozens of stores, actions and getters, we even share our prescribed method of large scale code organization and testing strategies.
Getters are only calculated whenever their dependencies change. So if the dependency is a keypath then it will only recalculate when that path in the app state map has changed (which can be done as a simple state.getIn(keyPath) !== oldState.getIn(keyPath)
which is an O(log32(n))
operation. The other case is when a getter is dependent on other getters. Since every getter is a pure function, NuclearJS will only recompute the getter if the values of its dependencies change.
NuclearJS was designed first and foremost for large scale production codebases. For a much more lightweight Flux implementation that shares many of the same ideas and design principles check out Microcosm.
Contributions are welcome, especially with the documentation website and examples. See CONTRIBUTING.md.