-
Notifications
You must be signed in to change notification settings - Fork 788
Using cljc
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.
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
andcljs
files totarget
others would mix them with other sources (i.e. using acommon
folder).
Some examples of transitions are zelkova and bidi
- Think about your new project structure: while some libraries can get away with full
cljc
codebases, most application code will needclj
,cljs
, andcljc
files. If one of your namespaces is mostly interop (e.g. date handling), it is preferable to have 2 distinctclj
andcljs
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 betweenclj
andcljs
. See the wiki. For example, while:import
is used in Clojure for user defined classes (defrecord
anddeftype
), 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.
- Rationale
- Quick Start
- Differences from Clojure
- [Usage of Google Closure](Google Closure)