Compojure for ClojureScript. Works both in the node.js environment and in browsers
[compojurescript "0.1.1"]
Node.js with macchiato-framework
(ns hello-world.core (:require [compojurescript.core :refer-macros [defroutes GET]] [macchiato.util.response :refer [not-found]])) (defroutes app (GET "/" [] "<h1>Hello World</h1>") (not-found "<h1>Page not found</h1>"))
SPA with accountant
(defroutes app-routes (ANY "/" [] {:page :home}) (ANY "/ext" [] nil) ;external link, not handled by accountant {:page :not-found}) (defn navigate! [path] (if-let [{:keys [page params]} (app-routes {:uri path})] ; draw your page )) (accountant/configure-navigation! {:nav-handler navigate! :path-exists? #(app-routes {:uri %})})
See Compojure docs for advanced usage
Copyright © 2018 Marat Khafizov, James Reeves
Distributed under the Eclipse Public License version 1.0