From b1221ed0edb0425f9a96908a362f4383c5496000 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sun, 4 Aug 2024 19:33:06 -0400 Subject: [PATCH] Work on the fullstack hono blog post. --- posts/fullstack-hono.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/posts/fullstack-hono.md b/posts/fullstack-hono.md index a282b7b..f8d4ec6 100644 --- a/posts/fullstack-hono.md +++ b/posts/fullstack-hono.md @@ -19,3 +19,14 @@ I wanted to write a small journey I have been on over the last couple of months. My old blog was built with 11ty and I deployed it manually with `rsync` behind a very simple NGiNX virtualhost. This was fine but I found I never wanted to actually write for it after a while. It didn't feel like _mine_. +## Bun + +I work with a lot of JavaScript in my day-to-day job. Over the time we moved to TypeScript and all the things that come with that. Last year, I got really into the state of Bun and Deno. + +## Hono + +I was looking at Bun-specific Express.js alternatives and a colleague of mine pointed me to Hono. I looked through the Hono documentation and it just clicked with me. Most of these micro-frameworks do a lot of the same thing. + +## JSX + +## Pulling it All Together