Skip to content

Latest commit

 

History

History
206 lines (186 loc) · 25.8 KB

README.md

File metadata and controls

206 lines (186 loc) · 25.8 KB

Clojure-Resources

This is a compilation of links and resources for learning about Clojure, ClojureScript, Om and more broadly, LISP. It is still in very early stages. Please feel free to add resources by issuing a pull request (preferred) or by getting in touch. Please also don't hesitate to suggest a better sort order.

Clojure

Clojure libraries

Learn the language

ClojureScript

ClojureScript libraries

Structuring an application

  • Organizing Your Project: a Librarian's Tale: useful chapter from the Clojure for the Brave and True book about code organization and namespaces. It's a little long but it still covers the topic well enough.
  • stuartsierra/component on GitHub: okay, so this one had been on my list for a while. Started watching Stuart's video a few times. Now I finally got around to using it. And all I can say is you really have to take a closer look at this. It makes structuring a larger application so much more straightforward. And the earlier you do, the more pain you save later. Rewriting an existing application is doable, but somewhat painful.
  • danielsz/system on GitHub: set of readymade components on top of the component library above.
  • palletops/leaven on GitHub: lightweight component model for both Clojure and ClojureScript.
  • palletops/bakery on GitHub: A library of components for leaven, the component library above.
  • MichaelDrogalis/onyx on GitHub: Distributed, fault tolerant data processing for Clojure. It does sound like an interesting and very ambitious concept for building distributed applications. On my list of things to maybe try at some point.
  • Building a System in Clojure: book by the maintainer of this repository about structuring complex applications.

Web development / Om

core.async

Transducers

Tooling

Distributed computing

Data analysis

  • Incanter: Clojure-based, R-like statistical computing and graphics environment for the JVM

Blog posts

Videos

Slides

Podcasts

Comparisons with other languages

LISP