Getting value out of Chestnut? Consider making a small donation.
Chestnut is a Clojure/ClojureScript application template. It takes the pain out of getting a working ClojureScript setup with live reloading plus a browser connected REPL.
It provides a solid default configuration for a REPL driven workflow, a ClojureScript setup with separate dev/prod/test builds, Figwheel integration, and a basic setup for running CLJ and CLJS unit tests. It provides a basic web backend setup with Compojure, and a frontend based on one of the React wrappers (your choice of Reagent, Rum, om-next, re-frame, or Vanilla JS). It works out of the box on popular cloud providers like Heroku.
While Chestnut it's quite "complete" in a sense, it also tries to be minimal. Boilerplate code is kept to a minimum, and there is only just enough structure to get you started. How you build and structure your app from there is up to you.
Chestnut should appeal to beginners because it allows you to get started quickly and with minimal baggage, it should appeal to more seasoned developers because it provides all the "obvious" configuration for a comfortable setup, without being so opinionated that it becomes a straight jacket.
For deployment you get uberjar support, meaning you can get all your code compiled, optimized, and packaged in a single executable JAR file. It also contains the necessary artifacts to work on Heroku out of the box.
Need help? Ask on the mailing list (issues on GitHub are for bugs. Feature requests can be done either on the mailing list or on Github.)
This README may describe unreleased features. Please compare the version number on Clojars to the changelog below, and check the README in your generated project for instructions pertaining to your version.
This README may describe unreleased features, instead you can check the README for the latest stable release
lein new chestnut <name> <options>
e.g.
lein new chestnut my-app +garden +reagent +http-kit
If you're using the snapshot version, then make sure to add a --
to separate Leiningen's and Chestnut's arguments
lein new chestnut my-app --snapshot -- +garden +reagent +http-kit
You can get an overview of all recognized options with
lein new chestnut +help
After that open the README of your generated project for detailed instructions.
Lighttable provides a tighter integration for live coding with an inline browser-tab. Rather than evaluating cljs on the command line with weasel repl, evaluate code and preview pages inside Lighttable.
Steps: After running (go)
, open a browser tab in Lighttable. Open a cljs file
from within a project, go to the end of an s-expression and hit Cmd-ENT.
Lighttable will ask you which client to connect. Click 'Connect a client' and
select 'Browser'. Browse to http://localhost:10555
View LT's console to see a Chrome js console.
Hereafter, you can save a file and see changes or evaluate cljs code (without saving a file). Note that running a weasel server is not required to evaluate code in Lighttable.
Start a repl in the context of your project with M-x cider-jack-in
.
After that it's the regular
(go)
(cljs-repl)
as described above.
This template gives you everything you need to start developing Clojure/ClojureScript apps effectively. It comes with
+om-next
), re-frame (+re-frame
),
Rum (+rum
), or use +vanilla
to do without a React wrapper.git push
.General options:
+help
Show an overview of all recognized options, then exit.+no-poll
Opt out of usage statistics poll.+http-kit
Use HTTP Kit instead of Jetty.+bidi
Use bidi instead of Compojure.+site-middleware
Use the ring.middleware.defaults.site-defaults
middleware (session, CSRF), instead of ring.middleware.defaults.api-defaults
(see
ring.defaults documentation).+code-of-conduct
/ +coc
Add the contributor covenant Code of Conduct.+edge
Use the latest available version of all libraries/plugins. This includes alpha/beta versions, but does not include SNAPSHOT versions.+bleeding-edge
Like +edge
, but also use SNAPSHOT versions when available.Choice of UI library:
+vanilla
Don't include Reagent, use this if you intend to use some other view library.+om-next
Use om.next, instead of Reagent.+re-frame
Use Reagent and re-frame.+rum
Use Rum instead of Reagent.Choice of CSS style:
+less
Use less for compiling Less CSS files.+sass
Use SASS for generating CSS.+garden
Use Garden for generating CSS.If you want to customize Chestnut, or try unreleased features, you can run directly from master like this:
git clone https://github.com/plexus/chestnut.git
cd chestnut
lein install
Note that master may be partially or wholly broken. I try to do extensive manual testing before releasing a new stable version, so if you don't like surprises then stick to the version on Clojars. Issue reports and pull requests are very welcome.
--snapshot
flag, e.g. lein new chestnut my-project --snapshot
{:text "Hello Chestnut!"}
portion and saved
the file, but the changes don't show up. app-state
is defined with defonce
, so your
application state doesn't reset every time you save a file. If you do
want to reset after every change, change (defonce app-state ..)
to
(def app-state ...)
.lein cljsbuild once min
, then look
for resources/public/js/app.js
.cljs
or clojure
and now
it's not working. I used the browser-connected-repl that's included with Austin as a starting point, then pulled in bits from cljs-liveedit-webapp until things worked. Figwheel's Flappy Bird Demo app also provided some ideas. The concept of refreshing Om when Figwheel reloads was taken from this blog post by Michiel Borkent.
For Heroku support I looked at Heroku's clojure-getting-started example app.
We hope Chestnut is great for you, but there are also many other templates that tackle similar tasks.. Each has a slightly different perspective, so it is worth taking a look at a few. Here is a comparison chart of many interesting Clojure/ClojureScript templates.
Copyright © 2014-2018 Arne Brasseur
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
Can you improve this documentation? These fine people already did:
Arne Brasseur, Rory Gibson, Edward Wible, Makoto Hashimoto, Stephen Lester, Jeff Wong, David Goldfarb, Denis Golovnev, Olli Piepponen, Will Mruzek, Travis McLane, Anton Chebotaev, Josh Hickman, Bastien, Zak Kriner, Jack Rusher, priyatam, ponkore, The Gitter Badger & dnolenEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close