-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
35 lines (31 loc) · 1 KB
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { Hono } from 'hono'
import { serveStatic } from 'hono/middleware.ts'
import * as path from 'std/path/mod.ts'
import * as esbuild from 'esbuild/wasm.js'
const app = new Hono()
const speedHeaderHead = 'GET /testyourspeed.deno.dev/speed HTTP/1.1\n'
app.get('/speed', c => {
const header = speedHeaderHead + [...c.req.headers.entries()].map(h => `${h[0]}:${h[1]}`).join('\n') + "\n"
return c.text((new Blob([header], { type: "text/plain" })).size)
})
app.get('/*', async c => {
const filepath = path.join('public', c.req.path)
let file: Uint8Array = new Uint8Array()
try {
file = await Deno.readFile(filepath)
} catch {
try {
file = await Deno.readFile(path.join(filepath, 'index.html'))
} catch {
return c.notFound()
}
}
if (c.req.path.slice(-3) === ".ts") {
c.header('content-type', 'text/javascript')
return c.text(await esbuild.transform(new TextDecoder().decode(file), {
loader: 'ts',
}))
}
return c.body(file)
})
Deno.serve(app.fetch)