Skip to content
Christopher Brown edited this page Aug 30, 2017 · 14 revisions

Reader Conditionals allow you to write code that can target both Clojure and ClojureScript. This problem was previously solved by cljx which is now deprecated. There is a guide for Reader Conditionals at clojure.org.

Transitioning from cljx

After reading the Reader Conditionals Design Page you'll notice the conversion is straightforward:

(try
 (dangerous!)
 (catch #+clj Exception
        #+cljs :default
        e
   (solve-it)))

is transformed to:

(try
 (dangerous!)
 (catch #?(:clj Exception
           :cljs :default)
        e
   (solve-it)))

Some things to have in mind while making the transition:

  • Make sure you delete all the files generated by cljx before starting with the transition. While some projects would generate the clj and cljs files to target others would mix them with other sources (i.e. using a common folder).

Some examples of transitions are zelkova and bidi

General Considerations

  • Think about your new project structure: while some libraries can get away with full cljc codebases, most application code will need clj, cljs, and cljc files. If one of your namespaces is mostly interop (e.g. date handling), it is preferable to have 2 distinct clj and cljs than one file full of reader conditionals. A possible project structure:
src
|-- clj
|   |-- feed
|       |-- api.clj
|       |-- db.clj
|-- cljs
|   |-- feed
|       |-- components.cljs
|       |-- store.cljs
|-- cljc
|   |-- feed
|       |-- util.cljc
|       |-- schema.cljc
  • ns specs are one of the greatest differences between clj and cljs. See the wiki. For example, while :import is used in Clojure for user defined classes (defrecord and deftype), it is only used in ClojureScript for Google Closure Classes.

Below examples do not match project structure above and are confusing. Some notes: Add example cljs file including a function from cljc. Add example in clj file including cljc.

For example, the following clj code

(ns foo.bar
  (:require [baz.core :as baz])
  (:import [baz.core BazRecord]))

should be

(ns foo.bar
  (:require [baz.core :as baz #?@(:cljs [:refer [BazRecord]])])
  #?(:clj (:import [baz.core BazRecord])))

to be used in cljc.

See https://danielcompton.net/2016/05/04/requiring-records-clojure-clojurescript for fuller discussion and example.

Clone this wiki locally