1.0.0 • Published 1 year ago
@jvlk/rescript-htmx v1.0.0
@jvlk/rescript-htmx
JSX types and bindings to use ReScript and HTMX together.
Requires Rescript 11+.
This is not meant to be a full implantation of HTMX with a server, it's just a starting point to build with HTMX and ReScript.
Installation
npm i @jvlk/rescript-htmx
Update your project's rescript.json
file.
{
"bs-dependencies": [
+ "@jvlk/rescript-htmx"
],
}
How to use
JSX props
HTMX requires special HTML attributes that you will need to add to your custom JSX transform.
module Elements = {
type props = {
...JsxDOM.domProps,
+ ...Htmx.JsxProps.t,
}
}
JS Bindings
wip
1.0.0
1 year ago