Skip to content

htmx

Using Hono with htmx.

Snippets

typed-htmx

With using typed-htmx, you can write the JSX with the type definitions of htmx.

Install:

txt
npm i -D typed-htmx
npm i -D typed-htmx

tsconfig.json:

json
{
  "compilerOptions": {
    "types": ["typed-htmx"],
    "jsx": "react-jsx",
    "jsxImportSource": "hono/jsx"
  }
}
{
  "compilerOptions": {
    "types": ["typed-htmx"],
    "jsx": "react-jsx",
    "jsxImportSource": "hono/jsx"
  }
}

References

Released under the MIT License.