Skip to content

Instantly share code, notes, and snippets.

@wdhowe
Last active March 28, 2025 02:38
Show Gist options
  • Save wdhowe/0c71e90354d38f6764cf36d7eee07949 to your computer and use it in GitHub Desktop.
Save wdhowe/0c71e90354d38f6764cf36d7eee07949 to your computer and use it in GitHub Desktop.
Clojurescript Hello World (shadow-cljs+reagent)

Clojurescript Hello World

A hello world with Clojurescript+shadow-cljs+reagent.

  • shadow-cljs: A developer tool that provides development builds, hot loading dev web server, and more.
  • reagent: An interface to react. Create complicated react components with less verbosity and using mostly just Clojurescript functions.

Pre-reqs

Setup

Initial project setup.

  • Create a new project "myproject" with shadow-cljs and reagent.
lein new reagent-frontend myproject +shadow-cljs
cd myproject
  • Install packages from package.json (installs shadow-cljs into project).
npm install

Development Loop

  • Compile/build once
npx shadow-cljs compile app
  • Start an auto reloading code connected HTTP server.
npx shadow-cljs watch app
  • HTTP Web App: http://localhost:3000
  • Make changes to code (src/myproject/core.cljs), save, above page compiles and auto reloads.

Deploy

Running a release build optimized for production use.

  • Compile for release
npx shadow-cljs release app
  • Run a Nginx web server in your project home and serve the content (public/)
docker run -d -p 8080:80 --name my-nginx \
  -v $(pwd)/public:/usr/share/nginx/html \
  nginx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment