reitit/doc/README.md

147 lines
3.7 KiB
Markdown
Raw Normal View History

2017-09-18 05:30:03 +00:00
# Introduction
2017-09-14 13:33:36 +00:00
2017-09-18 05:30:03 +00:00
[Reitit](https://github.com/metosin/reitit) is a small Clojure(Script) library for data-driven routing.
2017-09-14 13:33:36 +00:00
2017-10-29 07:29:06 +00:00
* Simple data-driven [route syntax](./basics/route_syntax.md)
2017-11-27 06:02:35 +00:00
* [Route conflict resolution](./basics/route_conflicts.md)
2017-11-18 10:47:16 +00:00
* First-class [route data](./basics/route_data.md)
2017-10-29 07:29:06 +00:00
* Bi-directional routing
2017-12-27 19:35:37 +00:00
* [Pluggable coercion](./coercion/coercion.md) ([schema](https://github.com/plumatic/schema) & [clojure.spec](https://clojure.org/about/spec))
2017-09-14 13:33:36 +00:00
* Extendable
2017-11-27 06:02:35 +00:00
* Modular
2017-11-01 08:17:57 +00:00
* [Fast](performance.md)
2017-09-14 13:33:36 +00:00
2017-12-29 10:17:53 +00:00
There are also a separate [Ring-router](https://metosin.github.io/reitit/ring/ring.html) module with [data-driven middleware](https://metosin.github.io/reitit/ring/data_driven_middleware.html).
2017-12-27 19:35:37 +00:00
2017-09-18 05:30:03 +00:00
To use Reitit, add the following dependecy to your project:
2017-09-14 13:33:36 +00:00
2017-09-18 05:30:03 +00:00
```clj
[metosin/reitit "0.1.0-SNAPSHOT"]
```
2017-11-01 07:29:16 +00:00
Optionally, the parts can be required separately:
```clj
[metosin/reitit-core "0.1.0-SNAPSHOT"] ; just the router
[metosin/reitit-ring "0.1.0-SNAPSHOT"] ; ring-router
2017-12-27 19:35:37 +00:00
[metosin/reitit-spec "0.1.0-SNAPSHOT"] ; spec coercion
2017-11-27 06:02:35 +00:00
[metosin/reitit-schema "0.1.0-SNAPSHOT"] ; schema coercion
2017-11-01 07:29:16 +00:00
```
2017-11-13 05:25:33 +00:00
For discussions, there is a [#reitit](https://clojurians.slack.com/messages/reitit/) channel in [Clojurians slack](http://clojurians.net/).
2017-09-18 05:30:03 +00:00
# Examples
## Simple router
```clj
(require '[reitit.core :as r])
(def router
(r/router
[["/api/ping" ::ping]
["/api/orders/:id" ::order-by-id]]))
```
Routing:
```clj
(r/match-by-path router "/api/ipa")
; nil
(r/match-by-path router "/api/ping")
; #Match{:template "/api/ping"
2017-11-18 10:47:16 +00:00
; :data {:name ::ping}
2017-09-18 05:30:03 +00:00
; :result nil
; :params {}
; :path "/api/ping"}
(r/match-by-path router "/api/orders/1")
; #Match{:template "/api/orders/:id"
2017-11-18 10:47:16 +00:00
; :data {:name ::order-by-id}
2017-09-18 05:30:03 +00:00
; :result nil
; :params {:id "1"}
; :path "/api/orders/1"}
```
Reverse-routing:
```clj
(r/match-by-name router ::ipa)
; nil
(r/match-by-name router ::ping)
; #Match{:template "/api/ping"
2017-11-18 10:47:16 +00:00
; :data {:name ::ping}
2017-09-18 05:30:03 +00:00
; :result nil
; :params {}
; :path "/api/ping"}
(r/match-by-name router ::order-by-id)
; #PartialMatch{:template "/api/orders/:id"
2017-11-18 10:47:16 +00:00
; :data {:name :user/order-by-id}
2017-09-18 05:30:03 +00:00
; :result nil
; :params nil
; :required #{:id}}
(r/partial-match? (r/match-by-name router ::order-by-id))
; true
(r/match-by-name router ::order-by-id {:id 2})
; #Match{:template "/api/orders/:id",
2017-11-18 10:47:16 +00:00
; :data {:name ::order-by-id},
2017-09-18 05:30:03 +00:00
; :result nil,
; :params {:id 2},
; :path "/api/orders/2"}
```
## Ring-router
Ring-router adds support for `:handler` functions, `:middleware` and routing based on `:request-method`. It also supports pluggable parameter coercion (`clojure.spec`), data-driven middleware, route and middleware compilation, dynamic extensions and more.
```clj
(require '[reitit.ring :as ring])
(def handler [_]
{:status 200, :body "ok"})
(defn wrap [handler id]
(fn [request]
(update (handler request) :wrap (fnil conj '()) id)))
(def app
(ring/ring-handler
(ring/router
["/api" {:middleware [[wrap :api]]}
["/ping" {:get handler
:name ::ping}]
["/admin" {:middleware [[wrap :admin]]}
["/users" {:get handler
:post handler}]]])))
```
Routing:
```clj
(app {:request-method :get, :uri "/api/admin/users"})
; {:status 200, :body "ok", :wrap (:api :admin}
(app {:request-method :put, :uri "/api/admin/users"})
; nil
```
Reverse-routing:
```clj
(require '[reitit.core :as r])
(-> app (ring/get-router) (r/match-by-name ::ping))
; #Match{:template "/api/ping"
2017-11-18 10:47:16 +00:00
; :data {:middleware [[#object[user$wrap] :api]]
2017-09-18 05:30:03 +00:00
; :get {:handler #object[user$handler]}
; :name ::ping}
; :result #Methods{...}
; :params nil
; :path "/api/ping"}
```