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" {>= "4.08.0"} 14 "async_js" {>= "v0.14" & < "v0.15"} 15 "async_kernel" {>= "v0.14" & < "v0.15"} 16 "core_kernel" {>= "v0.14" & < "v0.15"} 17 "incr_map" {>= "v0.14" & < "v0.15"} 18 "incr_select" {>= "v0.14" & < "v0.15"} 19 "incremental" {>= "v0.14" & < "v0.15"} 20 "ppx_jane" {>= "v0.14" & < "v0.15"} 21 "virtual_dom" {>= "v0.14" & < "v0.15"} 22 "dune" {>= "2.0.0"} 23 "js_of_ocaml" {>= "3.4.1" & < "4.0.0"} 24 "js_of_ocaml-ppx" 25] 26synopsis: "A library for building dynamic webapps, using Js_of_ocaml" 27description: " 28The library is designed roughly on a model/view/controller model. 29Your application is built out of: 30 31- A functional model type that tracks the state of your application. 32 33- An incremental /view/ function for computing an HTML-like 34 representation of how your application should render on the browser. 35 The is based on the [[https://github.com/Matt-Esch/virtual-dom][virtual-dom]] javascript library. 36 37- An action type that is used to schedule events that update the 38 model. 39 40Combined with the ability to use Async, and in particular to send out 41network requests using websockets, this should allow the easy 42construction of rich web applications in a fairly comprehensible 43style. 44 45If you want a more concrete sense of how this works, look in the 46examples directory. 47" 48url { 49 src: 50 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/incr_dom-v0.14.0.tar.gz" 51 checksum: [ 52 "sha256=57b0ca69e0ce3c38dadec5df8b0bfb9ec777192412f6259a04002a47e529ca05" 53 "md5=f7c6d58180d131d3546266252c11a64f" 54 ] 55}