package js_of_ocaml

  1. Overview
  2. Docs
Compiler from OCaml bytecode to JavaScript

Install

dune-project
 Dependency

Authors

Maintainers

Sources

js_of_ocaml-6.4.1.tbz
sha256=e59bbffcaefaba3191620556514b7f53bb3249e3f881a070d72724234dffd819
sha512=bb470f316f9c81a3b2b8dedd0b0f18f8e06beb48dd70df1d9f846de90ffab439cab5ef7a93a8166af0998068b06097e8319bc0d9f4f23a7159b0de8b3b515746

Description

Js_of_ocaml is a compiler from OCaml bytecode to JavaScript. It makes it possible to run pure OCaml programs in JavaScript environment like browsers and Node.js

Added to opam-repository:

README

Js_of_ocaml (jsoo)

Build js_of_ocaml Build wasm_of_ocaml Update Web site - build Update Web site - deploy

Js_of_ocaml is a compiler from OCaml bytecode to JavaScript. It makes it possible to run pure OCaml programs in JavaScript environment like browsers and Node.js.

  • It is easy to install and use as it works with an existing installation of OCaml, with no need to recompile any library.
  • It comes with bindings for a large part of the browser APIs.
  • According to our benchmarks, the generated programs run typically faster than with the OCaml bytecode interpreter.
  • We believe this compiler will prove much easier to maintain than a retargeted OCaml compiler, as the bytecode provides a very stable API.

Js_of_ocaml is composed of multiple packages:

  • js_of_ocaml-compiler, the compiler.
  • js_of_ocaml-ppx, a ppx syntax extension.
  • js_of_ocaml, the base library.
  • js_of_ocaml-ppx_deriving_json
  • js_of_ocaml-lwt, lwt support.
  • js_of_ocaml-tyxml, tyxml support.
  • js_of_ocaml-toplevel, lib and tools to build an OCaml toplevel to JavaScript.
  • wasm_of_ocaml-compiler, the Wasm_of_ocaml compiler.

Requirements

See the opam files for version constraints.

wasm_of_ocaml-compiler additionally depends on a system installation of binaryen (version 119 or later)

Supported engines

The generated code and runtime target ECMAScript 2020 (ES2020). Out of the box they run on Node.js 18 or later and any evergreen web browser released since early 2020 (Chrome 80+, Firefox 74+, Safari 13.4+, Edge 80+). QuickJS-NG is also supported.

We optionally rely on js WeakRef, which is part of ECMAScript 2021, to implement Stdlib.Weak and Stdlib.Ephemeron. For older engines, the output can be transpiled down to ES5 — see the browser compatibility section of the manual.

Toplevel requirements

  • tyxml, reactiveData
  • ocp-indent: needed to support indentation in the toplevel
  • higlo: needed to support Syntax highlighting in the toplevel
  • cohttp: needed to build the toplevel webserver

Installation

Opam

opam install js_of_ocaml js_of_ocaml-compiler js_of_ocaml-ppx

Usage

Your program must first be compiled using the OCaml bytecode compiler ocamlc. JavaScript bindings are provided by the js_of_ocaml package. The syntax extension is provided by js_of_ocaml-ppx package.

ocamlfind ocamlc -package js_of_ocaml -package js_of_ocaml-ppx -linkpkg -o cubes.byte cubes.ml

Then, run the js_of_ocaml compiler to produce JavaScript code:

js_of_ocaml cubes.byte

Features

Most of the OCaml standard library is supported. However,

  • Most of the Sys module is not supported.

Extra libraries distributed with OCaml (such as Thread) are not supported in general. However,

  • Bigarray: bigarrays are supported using Typed Arrays
  • Num: supported
  • Str: supported
  • Graphics: partially supported using canvas (see js_of_ocaml-lwt.graphics)
  • Unix: time related functions are supported

Tail call is not optimized in general. However, mutually recursive functions are optimized:

  • self recursive functions (when the tail calls are the function itself) are compiled using a loop.
  • trampolines are used otherwise. More about tail call optimization.

Effect handlers are supported with the --effects={cps,double-translation} flag.

Data representation

Data representation differs from the usual one. Most notably, integers are 32 bits (rather than 31 bits or 63 bits), which is their natural size in JavaScript, and floats are not boxed. As a consequence, marshalling, polymorphic comparison, and hashing functions can yield results different from usual:

  • marshalling floats might generate different output. Such output should not be unmarshalled using the standard OCaml runtime (native or bytecode).
  • the polymorphic hash function will not give the same results on datastructures containing floats;
  • these functions may be more prone to stack overflow.

OCaml

JavaScript

int

number (32bit int)

int32

number (32bit int)

nativeint

number (32bit int)

int64

Object (MlInt64)

float

number

string

string or object (MlBytes)

bytes

object (MlBytes)

"immediate" (e.g. true, false, None, ())

number (32bit int)

"block"

array with tag as first element (e.g. C(1,2) => [tag,1,2])

array

block with tag 0 (e.g. [\|1;2\|] => [0,1,2])

tuple

block with tag 0 (e.g. (1,2) => [0,1,2])

record

block (e.g. {x=1;y=2} => [0,1,2])

constructor with arguments

block (e.g. C (1, 2) => [tag,1,2])

module

block

exception and extensible variant

block or immediate

function

function

Toplevel

Contents of the distribution

Filename

Description

LICENSE

license and copyright notice

README

this file

compiler/

compiler

examples/

small examples

lib/

library for interfacing with JavaScript APIs

ppx/

ppx syntax extensions

runtime/

runtime system

toplevel/

web-based OCaml toplevel

Dependencies (4)

  1. ppxlib >= "0.33"
  2. js_of_ocaml-compiler = version
  3. ocaml >= "4.13"
  4. dune >= "3.20"

Dev Dependencies (4)

  1. odoc with-doc
  2. re >= "1.9.0" & with-test
  3. ppx_expect >= "v0.14.2" & with-test
  4. num with-test

  1. alba >= "0.4.1"
  2. archetype >= "1.2.7"
  3. async_js < "v0.15.0"
  4. binaryen >= "0.3.0" & < "0.12.1"
  5. bisect_ppx_ng
  6. bls12-381-js
  7. bls12-381-js-gen
  8. bonsai >= "v0.15.1" & < "v0.17.0"
  9. brisk-reconciler
  10. brr-lwd
  11. chartjs
  12. chartjs-annotation
  13. chartjs-colorschemes
  14. chartjs-datalabels
  15. chartjs-streaming
  16. codex
  17. cohttp-lwt-jsoo
  18. cordova
  19. cordova-plugin-background-mode
  20. cordova-plugin-battery-status
  21. cordova-plugin-local-notifications
  22. cordova-plugin-sim-card
  23. dream >= "1.0.0~alpha5"
  24. dune >= "3.17.2" & < "3.24.1"
  25. eliom >= "7.0.0" & < "10.4.0" | >= "12.1.0"
  26. ezjs_ace
  27. ezjs_blockies < "0.1.1"
  28. ezjs_cleave
  29. ezjs_d3pie
  30. ezjs_extension >= "0.2"
  31. ezjs_fetch < "0.2"
  32. ezjs_min < "0.2"
  33. ezjs_odometer
  34. ezjs_push < "0.2"
  35. ezjs_qrcode
  36. ezjs_recaptcha
  37. ezjs_timeline
  38. fmlib_js >= "0.5.11"
  39. gen_js_api < "1.0.7"
  40. github-jsoo < "4.3.0"
  41. graphv_font_js
  42. incr_dom_interactive != "v0.15.0" & < "v0.17.0"
  43. incr_dom_keyboard
  44. incr_dom_partial_render != "v0.15.0" & < "v0.17.0"
  45. incr_dom_sexp_form != "v0.15.0" & < "v0.17.0"
  46. incr_dom_widgets
  47. integers_stubs_js
  48. irmin-indexeddb
  49. joolog
  50. js_of_ocaml-lwt >= "6.4.1"
  51. js_of_ocaml-ppx >= "6.4.1"
  52. js_of_ocaml-ppx_deriving_json >= "6.4.1"
  53. js_of_ocaml-tyxml >= "6.4.1"
  54. js_of_ocaml-webgpu
  55. js_of_ocaml-webidl
  56. js_of_ocaml_patches < "v0.17.0"
  57. json-data-encoding-browser
  58. jsonoo
  59. jsoo-react
  60. jsoo_broadcastchannel
  61. kkmarkdown
  62. landmarks >= "1.5"
  63. ldp_js
  64. leaflet
  65. learn-ocaml
  66. liquidsoap-js
  67. lp-glpk-js
  68. melange-edn >= "0.5.0"
  69. multicore-magic
  70. nanoid
  71. node_of_ocaml
  72. ocp_reveal
  73. ocplib-json-typed-browser
  74. ocsigen-start >= "7.1.0"
  75. ocsigen-toolkit >= "4.3.0"
  76. ocsipersist >= "2.1.0"
  77. ocsipersist-lib >= "2.1.0"
  78. ojs_base >= "0.8.0"
  79. out-channel-redirect
  80. plotly
  81. polynomial >= "0.4.0"
  82. ppx_css >= "v0.15.1" & < "v0.17.0"
  83. ppx_jsobject_conv != "0.9.3"
  84. promise_jsoo >= "0.4.2"
  85. prr
  86. quickterface
  87. re >= "1.13.2"
  88. regl
  89. rpclib-js
  90. sherlodoc
  91. sosie
  92. spin >= "0.8.0"
  93. tezt >= "3.1.0"
  94. timedesc-tzlocal-js
  95. timmy-jsoo >= "1.1.5"
  96. tw
  97. tyxml-lwd >= "0.2"
  98. virtual_dom < "v0.15.0"
  99. wasm_of_ocaml-compiler >= "6.4.1"
  100. webtest-js
  101. wikitext
  102. xmldiff_js
  103. xtmpl = "0.18.0"
  104. xtmpl_js

Conflicts

None