package js_of_ocaml

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

Install

Dune Dependency

Authors

Maintainers

Sources

js_of_ocaml-5.9.0.tbz
sha256=daf2c7811df906fe4a8e59cd6973ccf0bdbe4a7d0e1f1fd17c9584bd0b438594
sha512=67d8f647e453f3855aff556afee0ce4524a7833852343f90271ee7c540e40c3dead0fc728acb667fcf7df69068a7c9521db809d2d0dfa5a1a0b31d0f1b60d566

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

Published: 28 Nov 2024

README

Js_of_ocaml (jsoo)

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 runs 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.

Requirements

See opam file for version constraints.

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 --enable=effects 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.15"
  2. js_of_ocaml-compiler = version
  3. ocaml >= "4.08"
  4. dune >= "3.15"

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.13.0" & != "v0.15.0" & < "v0.17.0"
  4. binaryen >= "0.3.0" & < "0.12.1"
  5. bls12-381-js
  6. bls12-381-js-gen
  7. bonsai >= "v0.15.1" & < "v0.17.0"
  8. brr = "0.0.3"
  9. brr-lwd
  10. chartjs
  11. chartjs-annotation
  12. chartjs-colorschemes
  13. chartjs-datalabels
  14. chartjs-streaming
  15. cohttp-lwt-jsoo >= "2.5.0"
  16. coinst
  17. cordova
  18. cordova-plugin-background-mode
  19. cordova-plugin-battery-status
  20. cordova-plugin-local-notifications
  21. cordova-plugin-sim-card
  22. dream >= "1.0.0~alpha5"
  23. dune >= "3.17.0"
  24. eliom = "6.3.0" | >= "6.5.0" & < "6.8.0" | >= "6.9.2" & < "6.10.1" | >= "7.0.0"
  25. eris
  26. ezjs_ace
  27. ezjs_blockies
  28. ezjs_cleave
  29. ezjs_d3pie
  30. ezjs_fetch < "0.2"
  31. ezjs_min < "0.2"
  32. ezjs_odometer
  33. ezjs_push < "0.2"
  34. ezjs_qrcode
  35. ezjs_recaptcha
  36. ezjs_timeline
  37. fmlib_js
  38. gen_js_api < "1.0.7"
  39. github-jsoo < "4.0.0"
  40. graphv_font_js
  41. graphv_webgl_impl
  42. hardcaml = "1.2.0"
  43. hardcaml-examples >= "0.3.0"
  44. hardcaml-framework
  45. incr_dom >= "v0.15.1" & < "v0.17.0"
  46. incr_dom_interactive != "v0.15.0" & < "v0.17.0"
  47. incr_dom_keyboard
  48. incr_dom_partial_render != "v0.15.0" & < "v0.17.0"
  49. incr_dom_sexp_form != "v0.15.0" & < "v0.17.0"
  50. incr_dom_widgets
  51. integers_stubs_js
  52. iocamljs-kernel = "0.4.5"
  53. irmin-indexeddb >= "2.0"
  54. joolog
  55. js_of_ocaml-lwt >= "5.9.0"
  56. js_of_ocaml-ppx >= "5.9.0"
  57. js_of_ocaml-ppx_deriving_json >= "5.9.0"
  58. js_of_ocaml-tyxml >= "5.9.0"
  59. js_of_ocaml-webgpu
  60. js_of_ocaml-webidl
  61. js_of_ocaml_patches < "v0.17.0"
  62. json-data-encoding-browser
  63. jsonoo
  64. jsoo-react
  65. jsoo_broadcastchannel >= "2.0.0"
  66. jsoo_storage >= "1.0.1"
  67. kkmarkdown
  68. ldp_js
  69. leaflet
  70. learn-ocaml >= "0.12"
  71. liquidsoap-js
  72. lp-glpk-js
  73. nanoid
  74. node_of_ocaml
  75. nuscr < "1.1.0"
  76. ocaml-gist
  77. ocp_reveal
  78. ocplib-json-typed-browser
  79. ocsigen-start >= "1.7.0" & != "2.15.1" & < "2.16.0" | >= "7.0.0"
  80. ocsigen-toolkit >= "3.3.1"
  81. ojs-base >= "0.6.0"
  82. ojs_base
  83. plotly
  84. polynomial >= "0.4.0"
  85. ppx_css >= "v0.15.1" & < "v0.17.0"
  86. ppx_jsobject_conv >= "0.6.0" & != "0.9.3"
  87. promise_jsoo
  88. prr
  89. rpclib-js
  90. sherlodoc
  91. spin >= "0.8.0"
  92. tezt >= "3.1.0"
  93. timedesc-tzlocal-js
  94. timmy-jsoo
  95. tyxml-lwd >= "0.2"
  96. vg = "0.9.4"
  97. virtual_dom != "v0.15.0" & < "v0.17.0"
  98. webtest-js
  99. wikitext
  100. xmldiff_js
  101. xtmpl = "0.18.0"
  102. xtmpl_js

Conflicts

None

OCaml

Innovation. Community. Security.