Liking cljdoc? Tell your friends :D

Clojars Project

Expo

Create React Native apps in Clojurescript with Expo. Impress your friends and build truly native apps across iOS and Android in a sane language!

Status

+ [expo "26.0.0"]
+ [org.omcljs/om "1.0.0-beta1"]
+ [reagent "0.7.0"]
+ [re-frame "0.9.3"]
+ [rum "0.11.1"]
- [boot *broken*]

Pull requests welcome! I don't know enough about Boot (or have enough time to learn) to support them!

Features

  • Reusable codebase for iOS and Android
  • Fast development feedback loops with REPL live coding (via Figwheel)
  • Easily test and publish your apps without installing XCode or Android Studio
  • Source map support when debugging Clojurescript
  • Supports React wrappers Reagent and Om.Next

Need help?

Dependencies (install these first)

Usage

1. Create your project

lein new expo your-project +reagent
lein new expo your-project +om
lein new expo your-project +rum

2. Change into your project's directory

cd your-project

3. Install npm dependencies

yarn install

4. Start figwheel

To auto-compile Clojurescript code and provide a development REPL

lein figwheel

5. Start XDE and open the project's directory

From here you can Publish, Share, or run the app on a device. See Expo's documentation for more info.

6. [optional] Set lan-ip option via file:

Create file named .lan-ip with your ip. This ip will be used by figwheel to connect via websockets. If this file is not present it gets the ip from the system.

In linux you can execute the following line to create the file.

source lan-ip.sh

To add new assets or npm modules

  1. Just js/require it somewhere in your code:
    (def cljs-logo (js/require "./assets/images/cljs.png"))
    (def FontAwesome (js/require "@expo/vector-icons/FontAwesome"))
  1. Reload simulator or device

Publishing

1. Clean the build directory

lein clean

2. Create a production build

lein prod-build

3. Open XDE and Publish

Externs

Production builds use advanced closure compilation which sometimes cause problems with javascript interop (details). In the past we ran a custom script to try and prepare a proper externs file, but I've found it to be very problematic and am now recommending the following:

  • Try out the :externs-inference setting in the clojurescript compiler. It should be enabled by default in newer versions of this template.
  • Use an interop package like cljs-oops for all js interop as dot references can get mangled (.-property js-object)
  • Add your externs manually to

Upgrading

As this is only an initial template, you'll want to upgrade to newer versions of expo. Honestly, it's usually as easy as reading the latest blog post for the new version and following the upgrade directions at the bottom. It usually comes down to:

  1. Updating the sdkVersion in app.json
  2. Updating the react dependencies in package.json
  3. Deleting your .node_modules directory
  4. Running yarn to install the updated dependencies
  5. Reopen your project in XDE and press “Restart” to clear the packager cache, or run exp start -c if you use use exp

Sometimes you'll need to upgrade clojurescript rendering dependencies (reagent and om-next), and in that case I recommend checking the issues/commits in this project for solutions.

Tips

  • Make sure you disable "Live Reload" and "Hot Reload" from the Developer Menu. (Figwheel does this better!)

Inspired by

License

Copyright © 2017 Sean Tempesta

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:
Sean Tempesta, Tienson Qin, Baspar, Supakorn Warodom & francesc
Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close