opam install html_of_jsx -yPin a specific development commit from GitHub:
opam pin add html_of_jsx.dev "https://github.com/davesnx/html_of_jsx.git#01c813023e432cd4088b86ee21d5c3af2fc63bdc" -yAdd html_of_jsx to the depends field in your dune-project:
(package
(name my_app)
(depends
(ocaml (>= 4.14))
(html_of_jsx (>= 0.1.0))))Then lock and install:
dune pkg lock
dune buildEvery executable or library that uses JSX needs two things: the runtime library and the ppx preprocessor.
An executable:
(executable
(name server)
(libraries html_of_jsx)
(preprocess (pps html_of_jsx.ppx)))A library:
(library
(name components)
(libraries html_of_jsx)
(preprocess (pps html_of_jsx.ppx)))See ppx settings for all available flags.
html_of_jsx works with two JSX-capable syntaxes: Reason and mlx.
opam install reason -yReason files use the .re extension and work out of the box with dune.
mlx lets you write JSX directly inside OCaml files.
opam install mlx ocamlformat-mlx ocamlmerlin-mlx -yAdd the dialect to your dune-project:
(dialect
(name mlx)
(implementation
(extension mlx)
(merlin_reader mlx)
(format
(run ocamlformat-mlx %{input-file}))
(preprocess
(run mlx-pp %{input-file}))))Then name your files with the .mlx extension instead of .ml.
The vscode-ocaml-platform extension supports both Reason and mlx out of the box, including syntax highlighting, type information, and go-to-definition.