up vote 10 down vote favorite
7
share [g+] share [fb]

I'm in the process of checking out Clojure for the first time. I've found it useful looking at the (doc xxx) and (source xxx) of the Clojure core library, but I'm more concerned with how you would organise and put together a full application.

Are there any excellent, open source examples of this?

For example, to learn how to code well in Java I might look at the Spring source-code, or something similar.

Cheers

Matt

link|improve this question

feedback

1 Answer

up vote 13 down vote accepted

Prominent open source Clojure projects:

  • Compojure - a web framework (since you mentioned Spring)
  • Ring - HTTP abstraction API
  • Incanter - R-like statistical computing and graphics environment
  • Leiningen - a build tool for Clojure
  • Clojure-Contrib - you mentioned the core library, but contrib is definitely worth looking at as well.
  • Enclojure - Clojure IDE tools (used with Netbeans/Redcar)
  • Counterclockwise - Eclipse plugin for Clojure
  • 4Clojure - Website with interactive fill-in-the-blank Clojure problems

A few blog posts explaining bite-sized Clojure applications:

link|improve this answer
awesome, thanks for the comprehensive list! – lucas1000001 Sep 2 '10 at 18:43
feedback

Your Answer

 
or
required, but never shown

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