Serve static files
Alan Pearce alan@alanpearce.eu
Mon, 11 Sep 2023 19:43:06 +0200
5 files changed, 18 insertions(+), 10 deletions(-)
M package.json → package.json
@@ -10,6 +10,6 @@ "typescript": "^5.0.0" }, "type": "module", "dependencies": { - "siopao": "^0.4.0" + "serve-static-bun": "^0.5.3" } }
M src/index.ts → src/index.ts
@@ -1,10 +1,10 @@-import { withHtmlLiveReload } from "bun-html-live-reload"; -import Siopao from "siopao"; - -const router = new Siopao(); +import { withHtmlLiveReload } from "bun-html-live-reload" +import serveStatic from "serve-static-bun" -router.get("/status", () => new Response("OK")); +const dir = Bun.argv.length > 2 ? Bun.argv[Bun.argv.length - 1] : "./" export default withHtmlLiveReload({ - fetch: router.fetch.bind(router), + fetch: serveStatic(dir, { + dotfiles: "allow" + }), })
M test/index.test.ts → test/index.test.ts
@@ -4,6 +4,7 @@ import app from "../src/index" const port = 33000; +const base = `http://localhost:${port}/`; let server: Server beforeAll(async function () { @@ -15,7 +16,13 @@ server.stop() }) test("/status returns 200 OK", async function () { - const res = await fetch(`http://localhost:${port}/status`) + const res = await fetch(new URL("/status", base)) expect(res.status).toBe(200) expect(await res.text()).toBe("OK") }) + +test("/ returns 200 and says Hello world", async function () { + const res = await fetch(base) + expect(res.status).toBe(200) + expect(await res.text()).toBe("Hello world") +})