Living Clojure Review

Living Clojure on Safari Books Online

Living Clojure Book

The subtitle is “An Introduction and Training Plan for Developers”. This book was published late April 2015, and at 220 pages, I preferred to wait and review the printed copy for this type of introductory text.

The book is aimed at programmers with a background in existing languages who want to step into the Clojure environment. It does assume that the reader has access to the correct runtime dependencies like the JVM.

A slim book but dense with information to bootstrap the process of learning Clojure in a curated way by the author Carin Meier. The code examples don’t take up too much space due to the compactness of Clojure itself.

The Clojure environment exists on the Java Virtual Machine and more recently as a Javascript language overlay with Clojure script.

This allows Clojure programmers to share the idea that the front-end can extend into the server too, using the same language. Often cited as an example of increased productivity by Nodejs developers.

The book has two logical parts.

The first part is an introduction to Clojure through the REPL(Read/Eval/Print/Loop) and Leiningen the project boot-strapping tool. It does include coverage on language concepts such as Concurrency, with core.async, and Macros. Any modern language exists in a community of libraries and frameworks; these are described in chapters 5 and 9.

The book introduces transit as the Clojure data format for serialisation between the client and server.

Clojure script is covered in chapter 7: Creating Web Applications with Clojure. The powerful Om reactive framework is mentioned.

In part two there are daily code exercises over 7 weeks that ask the developer to fill in the blanks to complete the problems listed at www.4clojure.com.

It is possible to compress this time span by completing more each day. But the aim is to ‘think Clojure’ at least once a day over half a dozen weeks.

The final chapters show where Clojure is heading in version 1.7 and examines the Transducers concept - the separation of data and transformation pipelines.

Overall the book aims to bring an existing developer up to date in the world of Clojure, where the current state of the art exists; once there, another new book to be published, Clojure Applied: From Practice to Practitioner, takes the next steps with extended lessons on the best practices.