Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just read Deprecating the Observer Pattern and found it absolutely fascinating.

What's the status of the Scala.React package described in the document? I found one tarball of a snapshot of Scala.React but there doesn't seem to be much documentation or active maintenance. I also found ScalaFX, which looks like it might be related to reactive programming, but is similarly unmaintained.

Are there any projects out there that build on the ideas in this paper to create a GUI framework based on reactives?

share|improve this question
2  
Any information on the latest work in this area? I also read the paper and am interested in experimenting, but it seems to be difficult to find an actively maintained and documented project. I know of Scala.React, ScalaFX, SFX (same as ScalaFX?), and Fresca, but I can find no indication that work on these frameworks is still underway. A recent related question on the mailing list seems to have gone unanswered as well. – Aaron Novstrup Apr 11 '11 at 5:15

4 Answers

UPDATED: As William Harvey points out below, there is recent progress!


Like you, I have an intense interest in the project, so I creep these pages every few weeks. :)

https://github.com/ingoem

http://lamp.epfl.ch/~imaier/

https://codereview.scala-lang.org/fisheye/user/imaier

https://lampsvn.epfl.ch/trac/scala/search?q=imaier

share|improve this answer
Looks like there is no scala-react repository any more. :-( – Madoc Jan 30 '12 at 15:58
Was there ever? :) – Alex Cruise Jan 30 '12 at 22:09
Oops! Didn't notice that there never was one. Still, sad that there hasn't been any further update. Looks like a discontinued project now. – Madoc Jan 31 '12 at 6:19

Good news! It looks like Ingo Maier and Martin Odersky published a new technical report this year (2012) with some updates to Scala.React. The new code has been available on GitHub for about two weeks.

Relevant links:

Technical Report (2012): http://infoscience.epfl.ch/record/176887

GitHub: https://github.com/ingoem/scala-react

share|improve this answer
up vote 9 down vote accepted

I sent an email to one of the authors of the paper, who said he's actively working on it and plans to put it on Github in the near future.

Great news!

share|improve this answer
2  
Any updates since then? -) – tuxSlayer Feb 21 '12 at 15:57
2  
The project seems to be on hold, I understand that the author is a PhD student so if his research went to another path he probably won't continue with this. In any case someone kindly published the original code to github (github.com/dylemma/scala.react) and even though the maven repo he suggest to use in the readme does not work, you can install it on your environment with a git clone https://github.com/dylemma/scala.react.git and then a sbt publish-local – ilcavero Mar 24 '12 at 1:13

The only project that I currently know of is Naftoli Gugenheim's reactive web project, which he announced in this thread on the scala mailing list. The code is hosted at http://github.com/nafg/reactive

share|improve this answer
1  
Isn't it based on scala-react? – pedrofurla Apr 18 '11 at 17:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.