aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar xxxhussein <122984423+xxxhussein@users.noreply.github.com> 2023-09-08 23:21:41 +0300
committerGravatar GitHub <noreply@github.com> 2023-09-08 13:21:41 -0700
commitf27ef667c7b88bdea19ca2b3e9af88f74dc8e703 (patch)
tree74418167a137aee435ef714db748dec9f7b23cc8
parent7d9820d4787692b534049522177faa572110a682 (diff)
downloadbun-f27ef667c7b88bdea19ca2b3e9af88f74dc8e703.tar.gz
bun-f27ef667c7b88bdea19ca2b3e9af88f74dc8e703.tar.zst
bun-f27ef667c7b88bdea19ca2b3e9af88f74dc8e703.zip
Delete docs/ecosystem/buchta.md (#4536)
Delete buchta.md since its development is discontinued by LowByteFox: https://twitter.com/LowByteFox/status/1694025965452636612
-rw-r--r--docs/ecosystem/buchta.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/docs/ecosystem/buchta.md b/docs/ecosystem/buchta.md
deleted file mode 100644
index d0e8b92d8..000000000
--- a/docs/ecosystem/buchta.md
+++ /dev/null
@@ -1,36 +0,0 @@
-[Buchta](https://buchtajs.com) is a fullstack framework designed to take full advantage of Bun's strengths. It currently supports Preact and Svelte.
-
-To get started:
-
-```bash
-$ bunx buchta init myapp
-Project templates:
-- svelte
-- default
-- preact
-Name of template: preact
-Do you want TSX? y
-Do you want SSR? y
-Enable livereload? y
-Buchta Preact project was setup successfully!
-$ cd myapp
-$ bun install
-$ bunx buchta serve
-```
-
-To implement a simple HTTP server with Buchta:
-
-```ts#server.ts
-import { Buchta, type BuchtaRequest, type BuchtaResponse } from "buchta";
-
-const app = new Buchta();
-
-app.get("/api/hello/", (req: BuchtaRequest, res: BuchtaResponse) => {
- res.send("Hello, World!");
-});
-
-app.run();
-```
-
-
-For more information, refer to Buchta's [documentation](https://buchtajs.com/docs/). \ No newline at end of file