I'm looking for a good overall approach for building a ClojureScript application that runs completely in the browser. My target application lets the user select a local file, does some processing on its contents, and displays a summary of that processing. The processing isn't very compute intensive, so doing it all in the browser should be fine, without having to run a server.
I've done tons of Java Applets and Swing applications back in the day, but the browser is mostly unexplored territory for me. The less HTML, CSS, and straight JavaScript I need to write, the better IMO :-) ClojureScript rocks, so why write in anything else if I can avoid it? If I were writing it in Swing for the desktop, I'd create a top level frame, populate it with a bunch of nested panels to group widgets like buttons, text fields, text areas, etc, use some layout managers to make it display nicely when resized, and attach event listeners to the interactive widgets. I could use seesaw (https://github.com/daveray/seesaw) to write in Clojure instead of Java to interact with Swing. Is there an equivalent ClojureScript library that similarly interacts with some JavaScript widget library? -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
