this repo has no description

Merge pull request #22275 from tov/incr_dom.v0.15.1

incr_dom.v0.15.1

Kate 67a749e7 dc22833b

Changed files
+51
packages
incr_dom
incr_dom.v0.15.1
+51
packages/incr_dom/incr_dom.v0.15.1/opam
···
···
+
opam-version: "2.0"
+
maintainer: "Jane Street developers"
+
authors: ["Jane Street Group, LLC"]
+
homepage: "https://github.com/janestreet/incr_dom"
+
bug-reports: "https://github.com/janestreet/incr_dom/issues"
+
dev-repo: "git+https://github.com/janestreet/incr_dom.git"
+
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incr_dom/index.html"
+
license: "MIT"
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
]
+
depends: [
+
"ocaml" {>= "4.08.0"}
+
"async_js" {>= "v0.15" & < "v0.16"}
+
"async_kernel" {>= "v0.15" & < "v0.16"}
+
"core" {>= "v0.15" & < "v0.16"}
+
"incr_map" {>= "v0.15" & < "v0.16"}
+
"incr_select" {>= "v0.15" & < "v0.16"}
+
"incremental" {>= "v0.15" & < "v0.16"}
+
"ppx_jane" {>= "v0.15" & < "v0.16"}
+
"virtual_dom" {>= "v0.15" & < "v0.16"}
+
"dune" {>= "2.0.0"}
+
"js_of_ocaml" {>= "4.0.0"}
+
"js_of_ocaml-ppx" {>= "4.0.0"}
+
]
+
synopsis: "A library for building dynamic webapps, using Js_of_ocaml"
+
description: "
+
The library is designed roughly on a model/view/controller model.
+
Your application is built out of:
+
+
- A functional model type that tracks the state of your application.
+
+
- An incremental /view/ function for computing an HTML-like
+
representation of how your application should render on the browser.
+
The is based on the [[https://github.com/Matt-Esch/virtual-dom][virtual-dom]] javascript library.
+
+
- An action type that is used to schedule events that update the
+
model.
+
+
Combined with the ability to use Async, and in particular to send out
+
network requests using websockets, this should allow the easy
+
construction of rich web applications in a fairly comprehensible
+
style.
+
+
If you want a more concrete sense of how this works, look in the
+
examples directory.
+
"
+
url {
+
src: "https://github.com/janestreet/incr_dom/archive/refs/tags/v0.15.1.tar.gz"
+
checksum: "sha256=565264542acb08b61c7f1b63c41a69e5f788c7499b096094573b507163ae180d"
+
}