Ask HN: Is there any rails for Lisp?
1–10 of 13 posts
Re: Ask HN: Is there any rails for Lisp?
#2Leinengen: https://github.com/technomancy/leiningen for dependency management and project bootstrapping, development, REPL stuff.
Noir: http://webnoir.org/ A web framework
Korma: http://sqlkorma.com/ A database access API
Just start by grabbing Leiningen and go from there.
Don't forget there is also ClojureScript (https://github.com/clojure/clojurescript) so you can even write your client-side code in Clojure also (compiles to JavaScript).
Re: Ask HN: Is there any rails for Lisp?
#3Re: Ask HN: Is there any rails for Lisp?
#4Re: Ask HN: Is there any rails for Lisp?
#5also, here's a previous (2007) HN discussion on the subject: news.ycombinator.com/item?id=44882
Re: Ask HN: Is there any rails for Lisp?
#6hunchentoot
Prepare to be blown away by Edi Weitz's libraries. Excellent code reading.
Re: Ask HN: Is there any rails for Lisp?
#7Re: Ask HN: Is there any rails for Lisp?
#8http://weitz.de/ hunchentoot Prepare to be blown away by Edi Weitz's libraries. Excellent code reading.
Re: Ask HN: Is there any rails for Lisp?
#9http://weitz.de/ hunchentoot Prepare to be blown away by Edi Weitz's libraries. Excellent code reading.
Re: Ask HN: Is there any rails for Lisp?
#10I've looked in the past, and the two I've found are weblocks (common-lisp.net/project/cl-weblocks) and dragonfly (www.rundragonfly.com). From what I can tell, there is very little adoption of either. I would recommend Python or Ruby, even if you arent familiar with either. The available frameworks are much more mature, and help is easy to find given the large number of users. also, here's a previous (2007) HN discuss…