Satoshi Nitawakinitaking.hashnode.dev·Nov 17, 2024HonoでStaticAssets設定するときの注意点honoで Serve static files を参照して設定していたところ、少しハマっていたのでメモ。 // /src/index.ts const app = new Hono().basePath("/api"); app.use("/static/*", serveStatic({ root: "./" })); ├── src │ ├── domain │ ├── infrastructure │ ├── routes │ └── use-case └── st...Discusshono
Ben ✨blog.benoitpetit.dev·Oct 17, 2024Hono : Le framework web ultrarapide et léger pour tous tes projets JavaScript !Quand tu développes une API ou une application web, tu cherches une solution à la fois rapide, légère et facile à utiliser. Je te présente Hono. Ce framework, minimaliste et puissant, te permet de construire des applications performantes en un rien d...Discusshono
Wooseong Limwooseong.dev·Oct 14, 2024Next.js + Hono: FE 개발자가 우아하게 풀스택 개발하기개요 저는 프론트엔드 개발자입니다. 최근 회사에서 Next.js를 활용해 풀스택으로 개발을 하고 있습니다. 진행하는 프로젝트는 사내 내부 웹 서비스를 위한 REST API를 제공해야 했습니다. Next.js 단독으로 API 개발을 진행하다보니 여러가지 어려움을 겪게 되었고, 해결하기위해 조사해보다가 Hono를 알게되었습니다. 이 글을 작성하면서 Next.js와 Hono를 잘 사용해 우아하게 풀스택을 개발할 수 있는 방법을 알아보려고 합니다. H...Discuss·1 like·30 readsNext.js
Saurabh Tailorsaurabhtaylor.hashnode.dev·Jul 11, 2024Mastering Hono: Simple Steps with BunWhat is Hono ? Another JS framework ? can say so but it is so powerful , once u get hands on this framework u are not goin back to express. It is a JS library , mostly used in Serverless architecture. 💡 what is serverless architecture and why u ne...Discusshono
Oluwapelumi Adegokeblog.oluwapelps.com·Apr 15, 2024Jonze: Simpler Member ManagementFor the past 2 months, I've been working on something, Jonze : a practical tool designed to assist in the management of school organizations. Developed from firsthand experience as the Technical Director of the African Student Union at UTD, Jonze add...Discussmember management
Aviral Vardiyablog.aviralvardiya.com·Feb 26, 2024Week-13 @ 100xdevs cohort : BLOG app using react TS frontend and hono backend hosted on cloudflare workersThis week, we developed a blog application with React and TypeScript for the frontend, employing Hono for the backend HTTP server. Our backend was deployed on Cloudflare Workers, utilizing PostgreSQL as the database and Prisma as the ORM. Throughout ...DiscussReact
Aviral Vardiyablog.aviralvardiya.com·Feb 11, 2024Week-11 @ 100xdevs cohort : Server and serverless deployment on AWS EC2 and Cloudflare WorkersThis week delved into serverless and remote virtual server deployments. We learnt how serverless setups offer rapid bootstrapping, auto-scaling for uncertain user numbers, and cost-effectiveness for low-traffic deployments. Yet, they face challenges ...Discussserverless
Elias Frielingeliasfrieling.com·Dec 25, 2023Build up a basic HTTP server with Bun and HonoBun and Hono are two relatively new products to the JavaScript ecosystem centered around being fast and lightweight. Using them you can create blazingly fast apps, beating out the performance of node.js and express. Starting out There are multiple di...Discuss·337 readsBun
Nick Ballnpbee.hashnode.dev·Oct 8, 2023Testing an API endpoint with DenoDeno has become one of my favorite tools for web development. It’s refreshing to have all of the essential features readily available without needing to reach for third-party libraries. Recently, I’ve been working on an API-first version of Waveformr...DiscussDeno
subhendu singhspscodes.hashnode.dev·Aug 19, 2023Typed fetch with Sveltekit and Hono using RPCWhat is Hono? Hono is a fast and simple web framework that works in edge environments like Cloudflare Workers, Vercel Edge, etc. Its API is similar to that of express js, so if you have worked with express in the past, you can be productive with Hono...Discuss·38 readsSvelte