mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
docs
This commit is contained in:
parent
40464ed371
commit
5b97387bad
2 changed files with 17 additions and 1 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,5 +1,11 @@
|
|||
## 0.2.0-SNAPSHOT
|
||||
|
||||
Sample apps demonstraing the current status of `reitit`:
|
||||
|
||||
* `reitit-ring` with coercion, swagger and default middleware: https://github.com/metosin/reitit/blob/master/examples/ring-swagger/src/example/server.clj
|
||||
* `reitit-frontend`, the easy way: https://github.com/metosin/reitit/blob/master/examples/frontend/src/frontend/core.cljs
|
||||
* `reitit-frontent` with [Keechma](https://github.com/keechma/keechma)-style controllers: https://github.com/metosin/reitit/blob/master/examples/frontend-controllers/src/frontend/core.cljs
|
||||
|
||||
## `reitit-core`
|
||||
|
||||
* **BREAKING**: the router option key to extract body format has been renamed: `:extract-request-format` => `:reitit.coercion/extract-request-format`
|
||||
|
|
@ -89,6 +95,10 @@
|
|||
:validatorUrl nil}})
|
||||
```
|
||||
|
||||
## `reitit-frontend`
|
||||
|
||||
* new module for frontend-routing. See [docs](https://metosin.github.io/reitit/frontend/basics.html) for details.
|
||||
|
||||
## 0.1.3 (2018-6-25)
|
||||
|
||||
## `reitit-core`
|
||||
|
|
|
|||
|
|
@ -153,7 +153,13 @@ Invalid request:
|
|||
* content negotiation library like [Muuntaja](https://github.com/metosin/muuntaja)
|
||||
* some default Ring-middleware like `ring.middleware.params/wrap-params`
|
||||
|
||||
See [Ring with Swagger Example](https://github.com/metosin/reitit/tree/master/examples/ring-swagger) for a runnable example. Plan is to have more batteries as separate modules, templates and example projects. Stay tuned.
|
||||
## More examples
|
||||
|
||||
* `reitit-ring` with coercion, swagger and default middleware: https://github.com/metosin/reitit/blob/master/examples/ring-swagger/src/example/server.clj
|
||||
* `reitit-frontend`, the easy way: https://github.com/metosin/reitit/blob/master/examples/frontend/src/frontend/core.cljs
|
||||
* `reitit-frontent` with [Keechma](https://github.com/keechma/keechma)-style controllers: https://github.com/metosin/reitit/blob/master/examples/frontend-controllers/src/frontend/core.cljs
|
||||
|
||||
All examples are in https://github.com/metosin/reitit/tree/master/examples
|
||||
|
||||
## More info
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue