Experimental ClojureScript to ES6 module compiler.
Reducing friction between ClojureScript and JS tooling.
⚠️ This project is an experiment and not recommended to be used in production. It currently has many bugs and will undergo many breaking changes.
Also check out Squint which is a CLJS syntax to JS compiler.
Although it's early days and far from complete, you're welcome to try out cherry and submit issues.
$ mkdir cherry-test && cd cherry-test
$ npm init -y
$ npm install cherry-cljs@latestCreate a .cljs file, e.g. example.cljs:
(ns example
(:require ["fs" :as fs]
["url" :refer [fileURLToPath]]))
(prn (fs/existsSync (fileURLToPath js/import.meta.url)))
(defn foo [{:keys [a b c]}]
(+ a b c))
(js/console.log (foo {:a 1 :b 2 :c 3}))Then compile and run (run does both):
$ npx cherry run example.cljs
true
6
Run npx cherry --help to see all command line options.
A few examples of currenly working projects compiled by cherry:
- Cherry ClojureScript template on livecodes.io
- playground
- wordle
- react
- vite
- browser-repl: vite + browser REPL, three rendering models
- replicant: tic-tac-toe with replicant hiccup
- cherry-action-example
See the examples directory for more.
Goals of cherry:
- Compile
.cljsfiles on the fly into ES6-compatible.mjsfiles. - Compiler will be available on NPM and can be used from JS tooling, but isn't part of the compiled output unless explicitly used.
- Compiled JS files are fairly readable and have source map support for debugging
- Compiled JS files are linked to one shared NPM module
"cherry-cljs"which containscljs.core.js,cljs.string, etc. such that libraries written in cherry can be compiled and hosted on NPM, while all sharing the same standard library and data structures. See this tweet on how that looks. - Output linked to older versions of cherry will work with newer versions of cherry: i.e. 'binary' compatibility.
- Light-weight and fast: heavy lifting such as optimizations are expected to be done by JS tooling
- No dependency on Google Closure: this project will use it for bootstrapping itself (by using the CLJS compiler), but users of this project won't use it for compilation
- Macro support
- REPL support
- Async/await support. See this tweet for a demo.
- Native support for JS object destructuring:
[^:js {:keys [a b]} #js {:a 1 :b 2}] - Native support for JSX via
#jsxreader tag. See example.
Cherry may introduce new constructs such as js-await which won't be compatible
with current CLJS. Also it might not support all features that CLJS offers. As
such, using existing libraries from the CLJS ecosystem or compiling Cherry CLJS
code with the CLJS compiler may become challenging. However, some results of
this experiment may end up as improvements in the CLJS compiler if they turn out
to be of value.
See slides of a presentation given at Dutch Clojure Days 2022 about cherry and squint.
Depending on interest both from people working on this and the broader community, the above goals may or may not be pursued. If you are interested in maturing cherry, please submit issues for bug reports or share your thoughts on Github Discussions.
Cherry started out as a fork of Scriptjure. Currently it's being reworked to meet the above goals.
In cherry.edn you can describe the following options:
:paths: the source paths to search for files. At the moment, only.cljcand.cljsare supported.:extension: the preferred extension to output, which defaults to.mjs, but can be set to.jsxfor React(-like) projects.:copy-resources: a set of keywords that represent file extensions of files that should be copied over from source paths. E.g.:css,:json. Strings may also be used which represent regexes which are processed throughre-find.:output-dir: the directory where compiled files will be created, which defaults to the project root directory.:deps: a map of dependencies from the Clojure ecosystem, in the same format asdeps.edn. Only:git/url(with:git/sha) and:local/rootlibraries are supported, no jars yet. Their source directories are resolved via theclojureCLI (-Spath) and added to:paths. Requiresclojureon thePATH. Example:{:paths ["src"] :deps {io.github.cjohansen/replicant {:git/sha "..."}}}
See examples/browser-repl for an example project which
uses a cherry.edn, including a git dependency via :deps.
Run npx cherry watch to watch the source directories described in
cherry.edn and they will be (re-)compiled whenever they change.
Cherry ships a clojure.test-compatible testing library, requirable as
cljs.test or clojure.test:
(ns example-test
(:require [cljs.test :as t :refer [deftest is]]))
(deftest math-test
(is (= 4 (+ 2 2))))
(t/run-tests 'example-test)An (currently immature!) nREPL implementation can be used on Node.js with:
npx cherry nrepl-server --port 1888Please try it out and file issues so it can be improved.
The cherry-cljs/vite.js plugin provides a browser REPL: it hot-reloads
compiled cherry in the page and runs an nREPL server that your editor connects
to, evaluating forms in the live page. See
doc/browser-repl.md.
See embed.md.
$ git clone git@github.com:squint-cljs/cherry.git
$ cd cherry
$ bb devSee squint docs.
See squint docs.
Cherry is licensed under the EPL, the same as Clojure core and Scriptjure. See epl-v10.html in the root directory for more information.