reflux / refluxjs

A simple library for uni-directional dataflow application architecture with React extensions inspired by Flux
BSD 3-Clause "New" or "Revised" License
5.36k stars 330 forks source link

Reflux example for browser without npm #472

Closed prakashchokalingam closed 7 years ago

prakashchokalingam commented 8 years ago

Hi i am tired of searching example of using reflux with react on browser without npm. Most of the examples are written with npm packages.I tried to translate npm codes for browser but it didn't work.Is there any example available or please help me with it .

BryanGrezeszak commented 8 years ago

There is a CDN of v0.4.1 reflux here: https://cdn.jsdelivr.net/refluxjs/5.0.1/reflux.min.js

Basically everything works the same except instead of having to require it in like you would in Node, Reflux will just be a global variable you can access.

JSFiddle: https://jsfiddle.net/04eepuue/

prakashchokalingam commented 8 years ago

Thanks !