package js_of_ocaml
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Compiler from OCaml bytecode to JavaScript
Install
dune-project
Dependency
Authors
Maintainers
Sources
js_of_ocaml-6.4.0.tbz
sha256=7ae22a7e5a6c6aa14a8e2695fa62c66f32cb20db17f1b45dc21e97009342151f
sha512=6cea398d61d4be8e38e912ba7e4bad4f7b81b10d946cdf29026274b5a4b2cc2709fb75e23f7cbe2db335cc65679c262a8aa1b9148effc987d6e79665a7538286
doc/install.html
Installation
Requirements
OCaml: 4.13 to 5.5
Build tools:
- dune >= 3.20
- menhir
Libraries:
- cmdliner >= 2.0
- ppxlib >= 0.33
- sedlex >= 3.3
- yojson >= 2.1
Supported environments
The generated JavaScript works with:
- Node.js 18 or later
- Any modern browser supporting ECMAScript 2020 (ES2020) — Chrome 80+, Firefox 74+, Safari 13.4+, Edge 80+
- QuickJS-NG
Note: Stdlib.Weak and Stdlib.Ephemeron require WeakRef support (ECMAScript 2021), available in all modern browsers and Node.js 14.6+.
Install from opam
Basic installation
For most users, install the compiler and ppx:
opam install js_of_ocaml js_of_ocaml-compiler js_of_ocaml-ppx
With Lwt support
For asynchronous programming with Lwt:
opam install js_of_ocaml js_of_ocaml-compiler js_of_ocaml-ppx js_of_ocaml-lwt
All packages
To install all available packages:
opam install js_of_ocaml js_of_ocaml-compiler js_of_ocaml-ppx \ js_of_ocaml-lwt js_of_ocaml-tyxml js_of_ocaml-toplevel \ js_of_ocaml-ppx_deriving_json
WebAssembly compiler
To compile to WebAssembly instead of JavaScript:
opam install wasm_of_ocaml-compiler
Additional requirement: Binaryen 119 or later must be installed on your system. See Binaryen installation.
See wasm_of_ocaml for usage.
See also
- Quick start — Get started with a simple example
- Overview — Learn what js_of_ocaml can do
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page