package routes
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=3b629d698c2b00e504c13b4cd783548063719dcf01580c9c3f5104b81eb0d688
sha512=428f88812f76c4d99198cea42c5d60a7924fd71acf87def6278544c391b9586a10ce2e34485b83b249f639c15776f30d0efd5bb145775eb49118ea8662005eb3
doc/index.html
Routes
Introduction
Routes is a routing library for OCaml that allows defining type safe routes, to dispatch a request to a matching handler, based on path parameters in the input URI target. Type safe in this context, refers to processing the input URI in a manner that assigns concrete types to the values extracted from the path parameters.
The library has no external dependencies aside from the OCaml standard library, and it can be used in both native (via ocamlopt) and javascript usecases (via js_of_ocaml). It isn't tied to any particular framework, with the intention for frameworks to provide a higher level wrapper around it.
Installation
Routes is published on the opam repository. If using opam, install it via
stable version:
opam install routes
development version:
opam pin add routes.dev git+https://github.com/anuragsoni/routes.git
If using esy, add the dependency @opam/routes
to package.json/esy.json
. Or you can use esy add @opam/routes
to add it to the manifest file automatically.
Usage
let greet_user (name : string) (id : int) =
Printf.sprintf "Hello, %s [%d]" name id
let add_user (name : string) (id : int) (is_admin : bool) =
Printf.sprintf "Added user %s with id %d. IsAdmin? %b" name id is_admin
let greet_user_route () = Routes.(s "user" / str / int /? nil)
let add_user_route () = Routes.(s "user" / str / int / bool / s "add" /? nil)
let router = Routes.one_of [ greet_user_route () @--> greet_user
; add_user_route () @--> add_user ]
Routes ships with patterns that match the following types: int, int32, int64, bool, string, but it is possible to define custom patterns that can be used to extract path parameters that can be parsed into a user defined type.
module Shape = struct
type t =
| Square
| Circle
let parse = function
| "square" -> Some Square
| "circle" -> Some Circle
| _ -> None
let serialize = function
| Square -> "square"
| Circle -> "circle"
let p r = Routes.custom ~serialize ~parse ~label:":shape" r
end
(* Now the shape pattern can be used just like any
of the built in patterns like int, bool etc *)
let route () = s "shape" / Shape.p / s "create" /? nil
Support
Routes' git repository is located on Github. Use the repository's issue tracker to file bug reports and feature requests.
License
Routes is distributed under the BSD-3-clause license.
API documentation
Routes
Typed routing for OCaml.Routes
provides combinators for adding typed routing to OCaml applications. The core library will be independent of any particular web framework or runtime.