The fastest way a ClojureScript coder can get started with React Native development. Prove me wrong.
This is an example project, only slightly beyond Hello World, using: shadow-cljs, React Native, Expo, Reagent, and re-frame.
ClojureScript ❤️ React Native
Follow along to get started using Calva, Emacs/CIDER, Cursive, or the command line. It is assumed you have Java installad as well as dev tool chains for the platforms you are targeting. (If you are targeting the Web, then Chrome is enough.)
To facilitate that you can easily try this out without installing anything globally on your machine, this project installs everything it needs locally in node_modules
. Then npx
is used to execute tools like expo-cli
. That said, it is assumed you have Java installed.
To install dependencies, and setup the project, run:
npm i
From there use your favorite editor and/or the prompt.
- Install the Calva extension in VS Code.
- Open the project in VS Code. Then:
- Run the Calva command Start a Project REPL and Connect (aka Jack-in)
- Select the project type
Hello RN Shadow
. - Wait for shadow to build the project.
- Select the project type
- Then Start build task. This will start Expo and the Metro
builder. Wait for it to fire up Expo DevTools in your browser.
- Click Run in web browser
- When the app is running the Calva CLJS REPL can be used. Confirm this by evaluating something like:
(You should see the alert pop up where the app is running.)
(js/alert "Hello world!")
- Hack away!
Of course you should try to fire up the app on all simulators, emulators and phones you have as well. The Expo UI makes this really easy.
Open Emacs and a bash shell:
-
Run
npx shadow-cljs compile :app
to perform an initial build of the app. -
In Emacs open one of the files in the project (
deps.edn
is fine) -
From that buffer, do
cider-jack-in-clojurescript
[C-c M-J] to launch a REPL. Follow the series of interactive prompts in the minibuffer:- select
shadow-cljs
as the command to launch - select
shadow
as the repl type - select
:app
as the build to connect - and optionally answer
y
orn
to the final question about opening theshadow-cljs
UI in a browser. At this pointshadow-cljs
will be watching the project folder and running new builds of the app if any files are changed. You'll also have a REPL prompt, however the REPL doesn't work because it isn't connected to anything. The app isn't running yet.
- select
-
In a shell run
npm run ios
(same asnpx expo start -i
). This starts the Metro bundler, perform the bundling, launch the iPhone simulator, and transmit the bundled app. Be patient at this step as it can take many seconds to complete. When the app is finally running expo will display the message:WebSocket connected! REPL init successful
-
Once you see that the REPL is initalized, you can return to Emacs and confirm the REPL is connected and functional:
cljs.user> (js/alert "hello world!")
Which should pop-up a modal alert in the simulator, confirming the app is running and the REPL is connected end to end.
- Follow the instructions specified in Or the Command line.
- Open up the project in IntelliJ by pressing
Open or Import
and opening the project root directory. - Setup a project SDK by pressing
File > Project Structure
, selecting an SDK underProject SDK
and pressingOK
. - Select the REPL by pressing
Run > Edit Configurations
and selectingClojure REPL > REPL
. - Run the REPL by pressing
Run > Run 'REPL'
. - Run the commands in Using ClojureScript REPL
$ npm i
$ npx shadow-cljs watch app
# wait for first compile to finish or expo gets confused
# on another terminal tab/window:
$ npm start
This will run Expo DevTools at http://localhost:19002/
To run the app in browser using expo-web (react-native-web), press w
in the same terminal after expo devtools is started.
This should open the app automatically on your browser after the web version is built. If it does not open automatically, open http://localhost:19006/ manually on your browser.
Note that you can also run the following instead of npm start
to run the app in browser:
# same as npx expo start --web
$ npm run web
# or
# same as npx expo start --web-only
$ npm run web-only
Once the app is deployed and opened in phone/simulator/emulator/browser, connect to nrepl and run the following:
(shadow/nrepl-select :app)
To test the REPL connection:
(js/alert "Hello from Repl")
Shadow can start a CLJS repl for you, if you prefer to stay at the terminal prompt:
$ npx shadow-cljs cljs-repl :app
You will need to disable Fast Refresh provided by the Expo client, which conflicts with shadow-cljs hot reloading. You really want to use Shadow's, because it is way better and way faster than the Expo stuff is.
For the iOS and Android there is a Disable Fast Refresh option in the development menu. Sometimes you need to first enble it and then disable it.
For the web app there is, afaik, no way to disable the Live Reload. There used to be a way could block it, mentioned at https://github.com/thheller/reagent-expo, but it doesn't seem to work with newer Expo versions.
It's complicated. Expo's Fast Refresh has gone through several changes. First there were only Live Reload, which is an old school reload of the full app, albeit automatic. Then came Hot Reload which lived side by side with the live reload, but was mutually exclusive. Hot reload is faster and smarter. Presumably it can keep state between reloads in vanilla React Native projects. Both have lately been replaced with Hot Refresh. Except for when developing Web apps, when you have the the old Live Reload, and can't disable it.
A production build invloves first asking shadow-cljs to build a relase, then to ask Expo to work in Production Mode.
- Kill the watch and expo tasks.
- Execute
shadow-cljs release app
- Start the expo task (as per above)
- Enable Production mode.
- Start the app.
This repository provides a baseline setup for a React Native application. However newcomers may still have problems getting up in running "in 3 minutes" because of obscure dependencies on supporting tools such as the Java and Node runtimes. So while we can't definitively show every viable configuration, we can at least maintain what's known to work, especially when dependencies are bumped.
Expo SDK | 35 | 35 |
---|---|---|
clojure | 1.10.1 | 1.10.1 |
clojurescript | 1.10.520 | 1.10.597 |
expo-cli | 3.4.1 | 3.9.1 |
expo | 35.0.0 | 35.0.0 |
jdk | openjdk 1.8.0_222 | openjdk 1.8.0_222 |
node | 10.17.0 | 10.17.0 |
re-frame | 0.11.0-rc2 | 0.11.0-rc3 |
react | 16.9.0 | 16.9.0 |
react-native | 0.59.8 | 0.59.8 |
reagent | 0.9.0-rc2 | 0.9.0-rc3 |
shadow-cljs (cli) | 2.8.69 | 2.8.78 |
shadow-cljs (jar) | 2.8.69 | 2.8.78 |
yarn | 1.19.1 | 1.19.1 |
When in doubt, a script is provided in this repo (etc/toolchain-report
) to query what versions you have. This script is NOT needed for app development, building, or releasing, but may come in handy if you're having trouble getting up and running. toolchain-report
requires joker
, a portable and fast dialect of clojure implemented in go. See the joker repo on github for installation instructions.
(This project is built from this example of his: https://github.com/thheller/reagent-expo)
The :app
build will create an app/index.js
. In release
mode that is the only file needed. In dev mode the app
directory will contain many more .js
files.
:init-fn
is called after all files are loaded and in the case of expo
must render something synchronously as it will otherwise complain about a missing root component. The shadow.expo/render-root
takes care of registration and setup.
Source maps don't seem to work properly. metro
propably doesn't read input source maps when converting sources as things are correctly mapped to the source .js files but not their sources.
Initial load in dev is quite slow since metro
processes the generated .js
files.
reagent.core
loads reagent.dom
which will load react-dom
which we don't have or need. Including the src/main/reagent/dom.cljs
to create an empty shell. Copied from re-natal.