Lisp for the Web, Part II
msnyder.info
Lisp for the Web, Part II
1–10 of 18 posts
Re: Lisp for the Web, Part II
#2Re: Lisp for the Web, Part II
#3Re: Lisp for the Web, Part II
#4Re: Lisp for the Web, Part II
#5Great article! The only thing I'd do differently is just serve up the js as a static file instead of using code transformation. That seems likely to break for non-trivial amounts of js.
Re: Lisp for the Web, Part II
#6Allow me to flog WuWei, http://wuwei.name , a toolkit for doing Ajax web UIs in Common Lisp, now in production use on http://biocyc.org .
Re: Lisp for the Web, Part II
#7Re: Lisp for the Web, Part II
#8Great article! The only thing I'd do differently is just serve up the js as a static file instead of using code transformation. That seems likely to break for non-trivial amounts of js.
Yeah, Generate the data (JSON) that the javascript will work with, don't generate the javascript. That way we can have easy to serve, easy to cache static javascript.
Re: Lisp for the Web, Part II
#9Great article! The only thing I'd do differently is just serve up the js as a static file instead of using code transformation. That seems likely to break for non-trivial amounts of js.
[Disclosure: I'm the author of the ClojureJS library]
Re: Lisp for the Web, Part II
#10Great article! The only thing I'd do differently is just serve up the js as a static file instead of using code transformation. That seems likely to break for non-trivial amounts of js.
I beg to differ. I've used ClojureJS (a Clojure to JavaScript translator) for building a non-trivial web app front end, and the result has not only been robust but also a pleasure to build (from a Lisp programmer's point of view). [Disclosure: I'm the author of the ClojureJS library]