package js_of_ocaml-ppx

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

Install

Dune Dependency

Authors

Maintainers

Sources

js_of_ocaml-5.5.2.tbz
sha256=97e68512114ff1d97436785f7fb9bb98c521811acc5cff32b104bc5c4a29ac33
sha512=b5c126a0cf3cfb1b894394519366fac69d8848eff14a48090e590252d0f8eaa5b7370e162969533db926cd9589e617fe023ebbf63c078f3af6324d2a2f73ae66

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: 06 Dec 2023

README

Js_of_ocaml (jsoo)

Build Status" 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 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.

optional

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 of floats is not supported (unmarshalling works);
  • 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.0" & < "0.36.0"
  2. js_of_ocaml = version
  3. ocaml >= "4.08"
  4. dune >= "3.7"

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

Used by (80)

  1. alba >= "0.4.1"
  2. archetype >= "1.2.7"
  3. async_js
  4. atable
  5. binaryen >= "0.3.0" & < "0.12.1"
  6. bls12-381-js
  7. bls12-381-js-gen
  8. bonsai >= "v0.15.1"
  9. brisk-reconciler
  10. catala >= "0.3.0" & < "0.9.0"
  11. chartjs
  12. chartjs-annotation
  13. chartjs-colorschemes
  14. chartjs-datalabels
  15. chartjs-streaming
  16. cohttp-lwt-jsoo
  17. dream >= "1.0.0~alpha5"
  18. eliom >= "6.9.2" & < "6.10.1" | >= "7.0.0"
  19. ezjs_ace
  20. ezjs_blockies
  21. ezjs_cleave
  22. ezjs_cytoscape
  23. ezjs_d3pie
  24. ezjs_fetch < "0.2"
  25. ezjs_jquery
  26. ezjs_min
  27. ezjs_odometer
  28. ezjs_push < "0.2"
  29. ezjs_qrcode
  30. ezjs_recaptcha
  31. ezjs_timeline
  32. fmlib_js
  33. graphql_jsoo_client
  34. graphv_font_js
  35. graphv_webgl_impl
  36. incr_dom
  37. incr_dom_interactive
  38. incr_dom_keyboard
  39. incr_dom_partial_render
  40. incr_dom_sexp_form
  41. incr_dom_widgets
  42. irmin-indexeddb
  43. js_of_ocaml-lwt = "5.5.2"
  44. js_of_ocaml-tyxml = "5.5.2"
  45. js_of_ocaml-webgpu
  46. js_of_ocaml-webidl
  47. js_of_ocaml_patches
  48. jsonoo < "0.3.0"
  49. jsoo-react
  50. jsoo_broadcastchannel
  51. jsoo_storage
  52. kkmarkdown
  53. ldp_js < "0.5.0"
  54. leaflet < "0.2"
  55. learn-ocaml
  56. liquidsoap-js
  57. lp-glpk-js
  58. memtrace_viewer >= "v0.15.0"
  59. monaco_jsoo
  60. nuscr < "1.1.0"
  61. ocp_reveal
  62. ojs_base
  63. plotly
  64. polynomial >= "0.4.0"
  65. ppx_css
  66. promise_jsoo < "0.4.2"
  67. rpclib-js
  68. salto-analyzer
  69. spin >= "0.8.0"
  70. timedesc-tzlocal-js
  71. timmy-jsoo
  72. tyxml-lwd >= "0.2"
  73. vg < "0.9.5"
  74. virtual_dom
  75. virtual_dom_toplayer
  76. vue-jsoo < "0.3"
  77. webtest-js
  78. xmldiff_js
  79. xtmpl = "0.18.0"
  80. xtmpl_js < "1.0.0"

Conflicts

None

OCaml

Innovation. Community. Security.