A reactive server-rendered web framework for Clojure built on Datastar and Reitit.
Hyper renders your pages as hiccup on the server using Chassis, then keeps them alive over SSE — when state changes, the server re-renders and patches the DOM automatically. No client-side framework, no JSON APIs, no JavaScript to write.
(require '[hyper.core :as h]) (defn home-page [req] (let [count* (h/tab-cursor :count 0)] [:div [:h1 "Count: " @count*] [:button {:data-on:click (h/action (swap! count* inc))} "Increment"]])) (def routes [["/" {:name :home :title "Home" :get #'home-page}]]) (def handler (h/create-handler #'routes)) (def app (h/start! handler {:port 3000}))
Origin & Inspiration
Hyper wouldn't exist without the generosity of the Clojure community. We're grateful to the people whose work and ideas made this possible:
- Anders Murphy's essay Realtime Collaborative Web Apps Without ClojureScript laid the groundwork — demonstrating that server-rendered Clojure + Datastar + SSE is a viable architecture for reactive web apps.
- David Yang and David Nolen at Lightweight Labs, whose talk From Tomorrow Back to Yesterday at Clojure/conj 2025 shaped our thinking on server-driven UI and the direction of web development in Clojure.
Project Status
Hyper is in active alpha development and used in internal projects at Dynamic Alpha. The API is evolving rapidly — expect bugs and breakage until a 1.0 release.
We're building in the open to share with the Clojure community. Feedback and contributions are welcome.
Installation
We eventually intend to publish to Clojars, however while we are rapidly evolving the project we recommend to install via a :git/url instead. Make sure to grab the latest SHA.
{dynamic-alpha/hyper {:git/url "https://github.com/dynamic-alpha/hyper"
:git/sha "..."}}Requirements
Hyper uses virtual threads for its per-tab rendering loop — each connected browser tab gets its own lightweight virtual thread that blocks on a semaphore until state changes trigger a re-render. This means you need JDK 21 or later.
Virtual threads were finalized in JDK 21 (JEP 444) and are available without
any flags. On JDK 19 or 20 they are a preview feature and require the
--enable-preview flag, but we recommend just using JDK 21+.
Cursors
Cursors are the primary way to read and write state in Hyper. They behave just
like atoms — use deref, reset!, swap!, and add-watch as you would with a
normal atom.
Each cursor type scopes state differently:
(h/global-cursor :theme "light") ;; shared across everything (h/session-cursor :user) ;; scoped to browser session (h/tab-cursor :count 0) ;; scoped to a single tab (h/path-cursor :page 1) ;; backed by URL query params
The first argument is a key — either a keyword for flat access, or a vector for
nested access. global-cursor, session-cursor, and tab-cursor all support
this:
(h/tab-cursor :count 0) ;; flat — state[:count] (h/tab-cursor [:form :email] "") ;; nested — state[:form][:email] (h/session-cursor [:user :name]) ;; nested — session[:user][:name]
The optional second argument sets a default value when the key is nil.
| Cursor | Shared across tabs? | Shared across sessions? | Survives page reload? |
|---|---|---|---|
global-cursor |
✅ | ✅ | ✅ (global, in-memory) |
session-cursor |
✅ | No | ✅ (session length) |
tab-cursor |
No | No | No (in-memory) |
path-cursor |
No | No | ✅ (URL query params) |
Mutating any cursor triggers a re-render for every tab that depends on that scope — global changes re-render all tabs, session changes re-render tabs in that session, and so on.
Renders are throttled at ~60fps (16 ms intervals). Multiple cursor mutations
within the same frame window are batched into a single render. Mutations
spread across different frame windows produce one render per window.
For example: a sequence of mutations over 48 ms will result in roughly 3 renders,
each reflecting the latest state at that moment.
Actions
Actions are server-side functions triggered by user interactions. The action
macro captures the current session and tab context at render time, registers a
handler on the server, and returns a Datastar expression string that can be
bound to any event attribute.
(defn counter [req] (let [count* (h/tab-cursor :count 0)] [:div [:p "Count: " @count*] [:button {:data-on:click (h/action (swap! count* inc))} "+1"] [:button {:data-on:click (h/action (swap! count* dec))} "-1"]]))
When the button is clicked, Datastar POSTs to the server, Hyper executes the action body, the cursor mutation triggers the watcher, and the tab re-renders over SSE — all in one round trip with no page reload.
Actions have full access to the request context, so you can use any cursor type inside them:
;; Toggle a global theme that affects all tabs and sessions [:button {:data-on:click (h/action (let [theme* (h/global-cursor :theme "light")] (swap! theme* #(if (= % "light") "dark" "light"))))} "Toggle theme"] ;; Update session state shared across tabs [:button {:data-on:click (h/action (reset! (h/session-cursor :user) {:name "Alice"}))} "Log in"]
Actions are scoped to the tab that rendered them and are cleaned up automatically when the tab disconnects. The body can contain arbitrary Clojure — call functions, hit databases, update multiple cursors — whatever happens, the resulting state changes trigger re-renders for the appropriate tabs.
Client params
Actions can capture client-side DOM values and transmit them to the server using special $ symbols:
| Symbol | Captures | Use case |
|---|---|---|
$value |
evt.target.value |
Input/select/textarea value |
$checked |
evt.target.checked |
Checkbox/radio boolean state |
$key |
evt.key |
Keyboard event key name |
$form-data |
All named form fields | Form submission as a map |
Example usage:
;; Capture input value on change [:input {:data-on:change (h/action (reset! (h/tab-cursor :query) $value))}] ;; React to specific keys [:input {:data-on:keydown (h/action (when (= $key "Enter") (search! $value)))}] ;; Checkbox toggle [:input {:type "checkbox" :data-on:change (h/action (reset! (h/tab-cursor :dark?) $checked))}] ;; Full form submission [:form {:data-on:submit__prevent (h/action (save-user! $form-data))} [:input {:name "email"}] [:input {:name "password" :type "password"}] [:button "Save"]]
When $ symbols appear in the action body, the macro automatically generates a fetch() call instead of @post(), sending the extracted values as a JSON body. On the server, the action function receives these values bound to the corresponding $ symbols.
Additional symbols can be defined by extending the hyper.client-params/client-param multimethod.
For example, if you were handling mouse events, you might want to create support for tracking the x and y offset.
(defmethod hyper.client-params/client-param '$mouse-offset [_] {:js "{x:evt.offsetX, y:evt.offsetY}" :key "mouseOffset"})
The :js key is the JavaScript that executes in the client browser to collect the data, and the :key is key used in the JSON payload for the data, sent from the browser to the hyper application.
With this in place, your h/action code can reference symbol $mouse-offset, which will be
an EDN map with keys :x and :y.
Client-side guards
Pass a :when option to action to inject a client-side Datastar expression.
The guard runs before the action fires, letting you filter events at the browser level without a server round-trip.
;; Only POST when Enter is pressed — no network traffic on other keystrokes [:input {:type "text" :data-on:keydown (h/action {:when "evt.key === 'Enter'"} (reset! (h/tab-cursor :value) $value))}]
Signals
Signals are client-side reactive variables backed by Datastar's signal system. They let you keep ephemeral UI state in the browser — input values, toggle states, form drafts — without a server round-trip on every change, while still being readable and writable from server-side actions.
(defn user-form [req] (let [name* (h/signal :user-name "") enabled* (h/local-signal :enabled false)] [:div [:input {:data-bind name*}] [:label [:input {:type "checkbox" :data-bind enabled*}] "Enable"] [:p {:data-show @enabled*} "Name: " [:span {:data-text @name*}]] [:button {:data-on:click (h/action (create-user! {:name @name*}) (reset! name* ""))} "Submit"]]))
signal
(h/signal path) or (h/signal path default-value) creates a Datastar signal
that syncs between the browser and server.
Path can be a keyword or a vector of keywords for nested signals:
(h/signal :name "") ;; → $name (h/signal :user-name "") ;; → $userName (Datastar camelCase conversion) (h/signal [:user :name] "") ;; → $user.name (Datastar dot-notation nesting)
Dereferencing signals
@signal* behaves differently depending on the context:
During render, @signal* returns the Datastar expression string (e.g.
"$userName"). This is the $-prefixed signal name that Datastar evaluates
client-side — suitable for use in data-text, data-show, and any other
Datastar attribute that expects an expression:
[:span {:data-text @name*}] ;; → data-text="$userName" [:div {:data-show @enabled*} "Visible"] ;; → data-show="$enabled"
Because @signal* is just a string in render context, you can use it to build
Datastar expressions with normal string operations:
[:span {:data-text (str @name* ".toUpperCase()")}] ;; → data-text="$userName.toUpperCase()" [:div {:data-show (str @name* " !== ''")} "Has name"] ;; → data-show="$userName !== ''"
The signal itself without deref renders as the raw signal name (no $
prefix), which is the correct format for data-bind:
[:input {:data-bind name*}] ;; → data-bind="userName"
During action execution, @signal* returns the live value sent by
Datastar in the @post() request body. Datastar automatically sends all
non-underscore signals with every backend request, so your action code can
read the current client-side value:
[:button {:data-on:click (h/action (println "Current name:" @name*) (save-to-db! @name*))} "Save"]
reset! and swap! update the signal value on the server, which triggers a
datastar-patch-signals SSE event to push the new value to the client:
(h/action (reset! name* "") ;; clear the input (swap! counter* inc)) ;; increment a counter
local-signal
(h/local-signal path default-value) creates a local Datastar signal
(underscore-prefixed). Local signals are client-only — Datastar does not
send them to the server.
Dereferencing local signals
Local signals follow the same deref pattern as regular signals:
During render, @local* returns the Datastar expression string (e.g.
"$_open") — suitable for data-show, data-text, and building expressions.
Without deref, the signal renders as the raw name (e.g. "_open") for
data-bind.
During action execution, @local* throws — local signals are
underscore-prefixed, and Datastar does not include them in requests to the
server. reset! and swap! are also not supported.
Use local signals for ephemeral UI state that doesn't need server processing — dropdown visibility, accordion state, modal toggles:
(let [open?* (h/local-signal :open false)] [:div ;; Build a toggle expression using deref [:button {:data-on:click (str @open?* " = !" @open?*)} "Toggle"] ;; data-show needs the expression form (@) [:div {:data-show @open?*} "Collapsible content"]])
How signals work
Under the hood, h/signal does three things:
-
Declares the signal in the rendered HTML via a
data-signals:NAME__ifmissingattribute on the wrapper div, so Datastar creates the signal on page load without overwriting it on re-renders. -
Tracks the signal value in server-side tab state, so
reset!/swap!in actions can push updates to the client viadatastar-patch-signalsSSE events. -
Reads signal values from the
@post()request body during action execution, so@signal*returns the live client-side value.
All actions use Datastar's @post() under the hood, so signal values are
always available — even in actions that also use client params like $value,
$key, etc.
Navigation
Hyper uses Reitit for routing. Routes are
plain vectors with :name, :get, and optional metadata like :title:
(def routes [["/" {:name :home :title "Home" :get #'home-page}] ["/about" {:name :about :title "About" :get #'about-page}] ["/user/:id" {:name :user :title (fn [req] (str "User " (get-in req [:hyper/route :path-params :id]))) :get #'user-page}]])
Use navigate to create SPA links. It returns attributes for an <a> tag —
click navigates via Datastar + pushState, right-click / cmd-click opens in a new
tab via the :href:
[:a (h/navigate :home) "Home"] [:a (h/navigate :user {:id "42"}) "View User"] [:a (h/navigate :search {} {:q "clojure"}) "Search"]
The :title metadata is included in the browser history entry so that
back/forward navigation shows meaningful titles. Titles can be static strings,
functions of the request, or deref-able values like cursors.
Pass routes as a Var (#'routes) to create-handler for live-reloading during
development — route changes are picked up on the next request without restarting
the server and any connected tabs will automatically re-render.
:hyper/route
Every request passed to your render function includes :hyper/route — a map
with the current route's name, path, and parameters:
{:name :user
:path "/user/42"
:path-params {:id "42"}
:query-params {:tab "posts"}}This works identically on the initial page load and on every SSE re-render after SPA navigation, so it's safe to use anywhere — including shared components like navbars and breadcrumbs:
(defn navbar [req] (let [current (get-in req [:hyper/route :name])] [:nav [:a (merge (h/navigate :home) (when (= :home current) {:class "active"})) "Home"] [:a (merge (h/navigate :about) (when (= :about current) {:class "active"})) "About"]])) (defn home-page [req] [:div (navbar req) [:h1 "Home"]])
You can also read it from context/*request* inside actions or anywhere within
the request context — the value is always consistent with the tab's current
route.
Ring response passthrough
If a route handler returns a Ring response map (a map with :status) instead of
hiccup, Hyper passes it through as-is without wrapping it in HTML. This gives
you an escape hatch for redirects, error responses, or anything else that
doesn't fit the render-and-stream model:
(defn admin-page [req] (if-not (admin? req) {:status 302 :headers {"Location" "/login"} :body ""} [:div "Secret admin stuff"]))
This works for any status code or response shape — 301/302 redirects, 403 forbidden, JSON responses, etc.
Suppress hyper wrapping certain endpoints
You can suppress hyper wrapping an endpoint altogether by marking it as :hyper/disabled?
(def routes [["/" {:name :home :title "Home" :get #'home-page}] ["/api/info" {:name :api-info :hyper/disabled? true ;; disable hyper wrapping this endpoint :get #'about-page}]])
Watches
Under the hood, Hyper maintains a persistent SSE connection per tab. When state changes, the server re-renders your page function, diffs nothing — it sends the full HTML as a Datastar fragment, and Datastar morphs the DOM. Cursors changing state trigger this automatically, but for external sources you need to tell Hyper what to watch.
watch!
Call watch! from your render function to observe any external source. When it
changes, Hyper re-renders and pushes an update to the client:
(def db-results* (atom [])) (defn dashboard [req] (h/watch! db-results*) [:div [:h1 "Results"] [:ul (for [r @db-results*] [:li (:name r)])]])
watch! is idempotent — safe to call on every render. Watches are automatically
cleaned up when the tab disconnects.
The Watchable protocol
By default, watch! works with anything that implements clojure.lang.IRef
(atoms, refs, agents, vars). For custom external sources, extend
hyper.protocols/Watchable:
(require '[hyper.protocols :as proto]) (extend-protocol proto/Watchable my.db/QueryResult (-add-watch [this key callback] ;; callback is (fn [old-val new-val]) ;; Set up your change listener, call callback when data changes ) (-remove-watch [this key] ;; Tear down the listener ))
Route-level :watches
For sources that are tied to a specific page, declare them directly on the route
with :watches. Hyper sets them up when a tab navigates to that route and tears
them down when it navigates away:
(def live-orders* (atom [])) (def routes [["/" {:name :dashboard :title "Dashboard" :get #'dashboard-page :watches [live-orders*]}]])
When the :get handler is a Var (e.g. #'dashboard-page), it's automatically
added to the route's watches. This means redefining the function at the REPL
triggers an instant live reload for all connected tabs — no page refresh needed.
Global :watches
For sources that should trigger a re-render on every page, pass :watches
to create-handler. These are added to all page routes automatically — useful
for things like a top-level config atom or feature-flags that affect every view:
(def feature-flags* (atom {:new-ui? false})) (def handler (h/create-handler #'routes :watches [feature-flags*]))
Global watches are combined with any per-route :watches — global sources come
first, then route-specific ones.
Assets and <head> injection
Hyper doesn’t ship with an asset pipeline (Tailwind, Vite, etc.), but it does provide a couple small hooks so apps can easily:
- serve precompiled static assets (CSS/JS/images)
- inject tags into the HTML
<head>(stylesheets, scripts, meta tags)
Static assets
Enable static serving when you create your handler:
(def handler (h/create-handler #'routes :static-resources "public"))
Put files under resources/public/ and they’ll be available by URL:
resources/public/app.css→GET /app.cssresources/public/favicon.ico→GET /favicon.ico
For filesystem-based serving (useful in dev):
(def handler (h/create-handler #'routes :static-dir "public"))
You can also pass multiple directories (first match wins):
(def handler (h/create-handler #'routes :static-dir ["public" "target/public"]))
Injecting into <head>
Pass :head as either hiccup, or a function (fn [req] ...) that returns hiccup.
When :head is a function, it is re-evaluated on every SSE render cycle and the
full <head> is pushed to the client. This means dynamic stylesheets, meta tags,
and the <title> are all kept in sync reactively.
(def handler (h/create-handler #'routes :static-resources "public" :head [[:link {:rel "stylesheet" :href "/app.css"}] [:script {:defer true :src "/app.js"}] ]))
Pass :head as a Var (#'my-head) to enable live-reloading — when you
redefine it at the REPL, all connected tabs automatically update their <head>.
This is typically how you’d include your compiled Tailwind stylesheet.
SSE connection behavior
By default, Hyper keeps the SSE connection open even when the browser tab is hidden (e.g. the user switches to another tab). This ensures state updates are delivered immediately without waiting for the tab to become visible again.
If you'd prefer Datastar's default behavior — closing the connection when the
tab is hidden and reopening it when visible — pass :open-when-hidden? false:
(def handler (h/create-handler #'routes :open-when-hidden? false))
Hyper's built-in /hyper/events endpoint automatically sends SSE-friendly
headers, including Cache-Control: no-cache, no-transform and
X-Accel-Buffering: no, to improve compatibility with reverse proxies.
Brotli compression
Hyper uses brotli4j to compress both initial page responses and streaming SSE updates.
clj-kondo
Hyper ships with clj-kondo config. Import it with:
clj-kondo --copy-configs --dependencies --lint "$(clojure -Spath)"Testing
The hyper.test namespace provides test-page and test-action for testing
page handlers in isolation — no server, no browser, no SSE. Render a page,
inspect the output and effects, simulate user interactions, and re-render to
verify state changes.
(require '[hyper.test :as ht]) (require '[hyper.core :as h])
test-page
test-page renders a page handler and returns a map describing everything that
happened:
(defn counter-page [req] (let [count* (h/tab-cursor :count 0)] [:div [:h1 "Count: " @count*] [:button {:data-on:click (h/action {:as "increment"} (swap! count* inc))} "+1"] [:button {:data-on:click (h/action {:as "decrement"} (swap! count* dec))} "-1"]])) (ht/test-page counter-page) ;; => {:body [:div [:h1 "Count: " 0] [:button {...} "+1"] ...] ;; :body-html "<div><h1>Count: 0</h1>..." ;; :actions {"increment" {:fn #fn}, "decrement" {:fn #fn}} ;; :cursors {:global {}, :session {}, :tab {:count 0}, :route {...}} ;; :signals {:count {:html-name "count" :default-val 0 :local? false}} ;; :watches [#<Atom@...>] ;; :app-state #<Atom@...>}
Pass options to customize the test context:
;; Seed cursor state so the handler sees pre-existing values (ht/test-page my-page {:cursors {:tab {:count 10} :session {:user "alice"} :global {:theme "dark"}}}) ;; Simulate a specific route (ht/test-page my-page {:route {:name :user :path "/user/42" :path-params {:id "42"} :query-params {}}})
Seeded :cursors values take precedence over defaults — if your handler calls
(h/tab-cursor :count 0) but you seed {:tab {:count 10}}, the cursor will
read 10.
Naming actions with :as
The action macro accepts an :as option that gives the action a
human-readable name. test-page uses this as the key in the :actions map,
making it easy to find and invoke specific actions in tests:
;; In your page handler (h/action {:as "save-form"} (save! $form-data)) ;; In your test (get-in result [:actions "save-form" :fn])
Without :as, actions are keyed by their auto-generated action ID. :as can
be combined with :when:
(h/action {:as "search" :when "evt.key === 'Enter'"} (search! $value))
test-action
test-action executes an action from a test-page result and returns a
snapshot of cursor state after execution:
(let [result (ht/test-page counter-page)] (ht/test-action result "increment")) ;; => {:cursors {:global {}, :session {}, :tab {:count 1}, :route {...}} ;; :app-state #<Atom@...>}
Pass client params to simulate $value, $checked, $key, or $form-data:
(ht/test-action result "search" {:value "clojure"})
Full workflow
Chain test-page → test-action → test-page to verify the full
render–interact–re-render cycle. Thread :app-state to preserve state across
calls:
(deftest test-counter-page (let [;; Initial render r1 (ht/test-page counter-page)] (is (str/includes? (:body-html r1) "Count: 0")) ;; Simulate two clicks (ht/test-action r1 "increment") (ht/test-action r1 "increment") ;; Re-render with the same state (let [r2 (ht/test-page counter-page {:app-state (:app-state r1)})] (is (str/includes? (:body-html r2) "Count: 2")) (is (= 2 (get-in r2 [:cursors :tab :count]))) ;; Decrement (ht/test-action r2 "decrement") (let [r3 (ht/test-page counter-page {:app-state (:app-state r2)})] (is (str/includes? (:body-html r3) "Count: 1"))))))
Developing
Tests are run with Kaocha via the
:test alias. There are two test suites: :unit for fast in-process tests and
:e2e for browser-based end-to-end tests.
# Run unit tests only clojure -M:test --focus :unit # Run E2E browser tests only clojure -M:test --focus :e2e # Run all tests clojure -M:test
Unit tests
Unit tests live in test/hyper/ and cover cursors, actions, navigation, routing,
rendering, state management, and brotli compression. They run in-process with no
server or browser — just bind *request* and exercise the API directly.
E2E tests
End-to-end tests use Playwright via the
wally library to drive a real headless
Chromium browser against a running Hyper server. They're tagged with ^:e2e
metadata so Kaocha can filter them.
The E2E suite covers:
- Cursor isolation — multiple browser contexts (separate sessions) and multiple tabs within a session verify that global, session, tab, and URL cursors propagate to exactly the right scope
- Title live reload — redefining the routes Var updates
document.titlevia SSE without a page refresh - Head live reload — redefining the
:headVar hot-swaps<head>content via SSE - Content live reload — redefining the routes Var with new inline handler functions hot-swaps the page content via SSE
Contributing
PRs and ideas welcome! Please follow the angular commit guidelines with your messages. All subject lines should be less than 80 characters long and avoid needless language.
eg:
fix: header template rendering w/ nil data