package html_of_jsx
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Render HTML with JSX
Install
dune-project
Dependency
Authors
Maintainers
Sources
html_of_jsx-0.0.9.tbz
sha256=edc7d6d604820ef20d76611eaf7fdc29c691dd9fb48ed9930900f7f331dfea02
sha512=35eead27322cc1d3b34e32ed964449ff83a75f74f01c1127d54504145192b9c7726820f4825f5c793bde0887df202e4769946782d4f42c40b3a5a609daa4aada
doc/index.html
html_of_jsx
A JSX transformation and a library to write HTML in Reason and mlx.
Features
- Brings the "component model" to HTML
- Supports all of Reason's JSX features (uppercase components, fragments, optional attributes, punning) with a few improvements (lowercase components, no ppx annotation needed)
- Works with Reason and mlx
- Type-safe: each element only accepts its valid attributes, and attribute values are checked at compile time
- Sticks to HTML standard attributes: No React idioms (
className,htmlFor, etc.) - Integrates well with htmx
Minimal core API
JSX.renderto render a JSX element to an HTML string- Helpers:
JSX.string,JSX.stringf,JSX.int,JSX.float,JSX.null,JSX.list,JSX.array,JSX.unsafe - Advanced rendering:
JSX.render_to_channel,JSX.render_streaming
- Designed to work on the server, but can be used on the client side as well (with Melange or js_of_ocaml)
Installation
opam install html_of_jsx -y(libraries html_of_jsx)
(preprocess (pps html_of_jsx.ppx))See Getting started for dune package manager, opam pin, and syntax setup.
Usage
let element = <a href="https://x.com/davesnx">
<span> {JSX.string("Click me!")} </span>
</a>;
let html = JSX.render(element);
/* <a href="https://x.com/davesnx"><span>Click me!</span></a> */let element = <a href="https://x.com/davesnx">
<span>(JSX.string "Click me!")</span>
</a>
let html = JSX.render element
(* <a href="https://x.com/davesnx"><span>Click me!</span></a> *)See Core API for elements, children, components, and rendering.
Credits
This library was extracted from server-reason-react and later simplified to work only with HTML5.
Links
- GitHub: davesnx/html_of_jsx
- X: x.com/davesnx
- OPAM: html_of_jsx
- Performance: Making html_of_jsx 10x faster
Documentation
- Getting started — installation, dune setup, and first component
- Core API — elements, children, and composition
- Settings — ppx flags and settings
- How the ppx works — JSX transformation, static analysis, and performance
- Dream integration — integrate with Dream
- HTMX mode — htmx attributes and extensions
- React compatibility — React DOM prop aliases
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page