this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/incr_dom" 5bug-reports: "https://github.com/janestreet/incr_dom/issues" 6dev-repo: "git+https://github.com/janestreet/incr_dom.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_dom/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "5.1.0"} 14 "async_js" {>= "v0.17" & < "v0.18"} 15 "async_kernel" {>= "v0.17" & < "v0.18"} 16 "core" {>= "v0.17" & < "v0.18"} 17 "core_kernel" {>= "v0.17" & < "v0.18"} 18 "incr_map" {>= "v0.17" & < "v0.18"} 19 "incr_select" {>= "v0.17" & < "v0.18"} 20 "incremental" {>= "v0.17" & < "v0.18"} 21 "ppx_jane" {>= "v0.17" & < "v0.18"} 22 "virtual_dom" {>= "v0.17" & < "v0.18"} 23 "dune" {>= "3.11.0"} 24 "js_of_ocaml" {>= "5.1.1" & < "5.7.0"} 25 "js_of_ocaml-ppx" {>= "5.1.1" & < "5.7.0"} 26] 27available: arch != "arm32" & arch != "x86_32" 28synopsis: "A library for building dynamic webapps, using Js_of_ocaml" 29description: " 30The library is designed roughly on a model/view/controller model. 31Your application is built out of: 32 33- A functional model type that tracks the state of your application. 34 35- An incremental /view/ function for computing an HTML-like 36 representation of how your application should render on the browser. 37 The is based on the [[https://github.com/Matt-Esch/virtual-dom][virtual-dom]] javascript library. 38 39- An action type that is used to schedule events that update the 40 model. 41 42Combined with the ability to use Async, and in particular to send out 43network requests using websockets, this should allow the easy 44construction of rich web applications in a fairly comprehensible 45style. 46 47If you want a more concrete sense of how this works, look in the 48examples directory. 49" 50url { 51src: "https://github.com/janestreet/incr_dom/archive/refs/tags/v0.17.0.tar.gz" 52checksum: "sha256=a3a9ef135edd2039b5e771dfd9461ff2bbae55e2611af0e81c9577898314a76f" 53}