Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Meteor React Boilerplate | 172 | 7 years ago | 2 | JavaScript | ||||||
A starter project for React & Meteor | ||||||||||
Meteor Flux Leaderboard | 136 | 8 years ago | 7 | JavaScript | ||||||
Flux Example with React & Meteor | ||||||||||
Meteorflux | 44 | 7 years ago | 13 | other | JavaScript | |||||
Flux architecture for Meteor | ||||||||||
React Native Mantra Boilerplate | 34 | 7 years ago | 3 | mit | JavaScript | |||||
A react-native boilerplate based on Meteor/Mantra | ||||||||||
Reactive Dependency | 18 | 8 years ago | 1 | April 17, 2015 | 4 | JavaScript | ||||
Use reactive dependency injection in Meteor. | ||||||||||
Meteor Flux Helpers | 15 | 8 years ago | 2 | mit | JavaScript | |||||
Meteor package with general flux helpers | ||||||||||
React Native Meteor Router Flux | 11 | 7 years ago | 4 | May 27, 2016 | mit | JavaScript | ||||
Plugin for react-native-meteor | ||||||||||
Event Horizon | 7 | 7 years ago | 3 | September 14, 2016 | JavaScript | |||||
Flux for Meteor | ||||||||||
React Native Event Horizon | 2 | 7 years ago | 3 | JavaScript | ||||||
FLUX Architecture using Meteor's Tracker -- React Native | ||||||||||
Meteor Flux | 2 | 7 years ago | JavaScript | |||||||
Flux implementation for Meteor |
Flux Example with React & Meteor
Get the benifits of Relay without the wait or complexity
Plus
cd meteor-flux-leaderboard
meteor
Key pieces are in CollectionActions/Store, Tracker watches for changes on the Minimongo clientside cache and emits a change event when data changes. This retains all the optimistic UI and realtime data capabilities that Meteor offers.
Tracker.autorun(computation => {
var docs = Players.find({}).fetch();
if (computation.firstRun) return; // ignore first empty run
this.CollectionActions.playersChanged(docs);
});
This is simplified by using a helper package, though I think it's important to know how it works.
trackCollection(Players, CollectionActions.playersChanged);
Alt lets you take snapshots of your apps state and can undo/redo state as needed. You can use this to capture your app state on an error then send log it for debugging remotely.
A chrome extension is availible to help with local debugging:
https://www.youtube.com/watch?v=LUksOCuRjkE