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
- Host: GitHub
- URL: https://github.com/joshday/htmx.jl
- Owner: joshday
- License: mit
- Created: 2023-01-26T15:01:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-12T00:27:58.000Z (over 3 years ago)
- Last Synced: 2025-05-04T01:31:54.269Z (about 1 year ago)
- Topics: htmx, julia
- Language: Julia
- Homepage:
- Size: 5.86 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```