## Running on Bun with Hono now A few minutes ago, we deployed our app that is now running on [Bun](https://bun.sh/) using [Hono](https://hono.dev/) framework. We migrated from [Fastify](https://fastify.dev/) running on [Node.js](https://nodejs.org/). Luckily, it wasn't too hard of a migration. The configuration for Hono is a lot simpler and it cleaned up a lot of things and middleware is a piece of cake. It was mostly little changes like this: ```js fastify.get('/', async function (req, reply) { return rend.send(reply, '/views/index.js', { name: "lucy", }) }) // changed to hono style: app.get('/', async (c) => { return c.html(await rend.render('/views/index.js', { name: "lucy", })) }) ``` Migrating to Bun was... well, it just worked.