├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── example ├── .gitignore ├── README.md ├── astro.config.mjs ├── package-lock.json ├── package.json ├── public │ └── favicon.svg ├── src │ ├── components │ │ └── Card.astro │ ├── env.d.ts │ ├── layouts │ │ └── Layout.astro │ └── pages │ │ ├── about.astro │ │ └── index.astro └── tsconfig.json ├── package.json └── src └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/README.md -------------------------------------------------------------------------------- /example/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/astro.config.mjs -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/public/favicon.svg -------------------------------------------------------------------------------- /example/src/components/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/src/components/Card.astro -------------------------------------------------------------------------------- /example/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/src/layouts/Layout.astro -------------------------------------------------------------------------------- /example/src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/src/pages/about.astro -------------------------------------------------------------------------------- /example/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/example/src/pages/index.astro -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excessivecoding/astro-htmx/HEAD/src/index.js --------------------------------------------------------------------------------