Re: Clojure web app + js libraries - any suggestions?

2010-05-17 Thread Matt
If Saul's approach is really what you want to do, then you may want to look at Conjure, which has everything Saul mentions in one web framework. Check it out at: http://github.com/macourtney/Conjure A tutorial can be found at: http://wiki.github.com/macourtney/Conjure/hello-world-tutorial-2 To

Re: Clojure web app + js libraries - any suggestions?

2010-05-16 Thread Jason Smith
If you are taking Saul's approach, you might also want to take a look at generating XHTML, since XML support in Clojure is so easy, and strict HTML is a little more limiting. And if you were looking at Raphael, take a second look at plain-ol' SVG. It's already very good in Opera, Chrome, FireFox,

Re: Clojure web app + js libraries - any suggestions?

2010-05-16 Thread Base
Thanks much Saul. This is exactly what I am looking for! Let the webapps begin! On May 16, 7:15 am, Saul Hazledine wrote: > On May 15, 5:23 pm, Base wrote: > > > So I would love to hear what others have done in the past to integrate > > clojure into a web app.  Any info would be most appreciat

Re: Clojure web app + js libraries - any suggestions?

2010-05-16 Thread Saul Hazledine
On May 15, 5:23 pm, Base wrote: > So I would love to hear what others have done in the past to integrate > clojure into a web app.  Any info would be most appreciated. > I use compojure 0.4 with hiccup to generate the HTML. It feels like a very "old school" way of developing a web application bec

Clojure web app + js libraries - any suggestions?

2010-05-15 Thread Base
Hi All - I have been pondering a webapp using Clojure and am a bit stuck. Previously i have buit a few prototypes in GWT and have had good success. I have played around with compojure and scriptjure and am wondering how to develop a more interactive app using these tools. Has anyone had any succ