Practical FlapJax
I'll ignore one app for each response request:
http://continue2.cs.brown.edu/
http://resumedemo.cs.brown.edu/
Be aware that this was done by the Flapjax developers.
source to share
I use it for an internal page for my employer, which is basically a very fancy clock. Just using the library directly (skip the compiler they plan to deprecate) did a great job. Event streams are great when you have many different components coming and going that need to be synchronized.
So, sorry, I can't show you anything, but I was very happy with that.
source to share
I can just answer this question and thought that people might be interested in the website we are developing. It is currently in beta testing but relies heavily on the FlapJax ββJavaScript library. The website is here . Be aware that not all of the FlapJax ββcode and that there is Javascript in there, so it may take some curling to find the good bits.
More information about the site and its purpose can be found here .
source to share
I have used Flapjax successfully on various websites and web applications. At work, I am currently creating an interface for a managed switch that is completely flapjax based.
The key things you should consider are:
- Flapjax is an FRP (Functional Reactive Programming) library
- FRP works best at scale.
- All about managing both state and events.
- It only works when the whole FRP system
Small examples do not fulfill systemic justice.
NodeJS-based flash to flash on GitHub, although not quite ready yet. http://github.com/Zysen/Aurora
This is my FRP description that you might find helpful https://github.com/Zysen/Aurora/wiki
source to share