An open API service indexing awesome lists of open source software.

https://github.com/joshday/htmx.jl

Using Julia to write https://htmx.org
https://github.com/joshday/htmx.jl

htmx julia

Last synced: 10 months ago
JSON representation

Using Julia to write https://htmx.org

Awesome Lists containing this project

README

          

# HTMX

## Usage

- Here is (a slight variation of) the HTMX quickstart at [https://htmx.org](https://htmx.org):

```html



Click Me


```

- In Julia, you would write:

```julia
using Cobweb: Page, h
using HTMX

node = HTMX.hx(h.button("Click Me"), post="/clicked", swap="outerHTML")

h.div(HTMX.CDN(), node)
```