Serve and demo HTMX
This commit is contained in:
parent
7ddb9e61a6
commit
6f0c4620d7
1
src/frontend/htmx.min.js
vendored
Normal file
1
src/frontend/htmx.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
14
src/frontend/index.html
Normal file
14
src/frontend/index.html
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<script defer src="./htmx.min.js"></script>
|
||||||
|
<title>Caleb's Blog</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Hello</h1>
|
||||||
|
<button hx-get="/content/post">Click Me</button>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
12
src/index.ts
12
src/index.ts
@ -1,7 +1,17 @@
|
|||||||
import { Elysia } from "elysia";
|
import { Elysia } from "elysia";
|
||||||
|
|
||||||
const app = new Elysia().get("/", () => "Hello Elysia").listen(3000);
|
const app = new Elysia()
|
||||||
|
.get("/", () => Bun.file("./src/frontend/index.html"))
|
||||||
|
.get('/htmx.min.js', () => Bun.file("./src/frontend/htmx.min.js"))
|
||||||
|
.get("/content/post", () => "I'm from the server")
|
||||||
|
.listen(3000);
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
`🦊 Elysia is running at ${app.server?.hostname}:${app.server?.port}`
|
`🦊 Elysia is running at ${app.server?.hostname}:${app.server?.port}`
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
function ssr() {
|
||||||
|
let appShell = Bun.file('./src/frontend/shell.html').text()
|
||||||
|
return appShell
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user