blog.raulnq.comOpenAPI + Hono: Building Type-Safe REST APIs with Automatic DocumentationModern API development requires balancing multiple concerns: runtime validation, compile-time type safety, and comprehensive documentation. Traditionally, these have been separate concerns, leading to documentation drift and type mismatches between s...Jan 28·18 min read
blog.raulnq.comBuilding a Full-Stack TypeScript Monorepo with React and HonoThis article guides you through creating a full-stack TypeScript monorepo from scratch. By the end, you'll have a React frontend and Hono API backend sharing the same repository with unified tooling for linting, formatting, and commit conventions. Pr...Jan 19·17 min read
blog.raulnq.comHono: TestingTesting is a critical aspect of building reliable APIs. When working with Hono, a lightweight and fast web framework, we can leverage its built-in testing utilities alongside Node.js's native test runner to create comprehensive integration tests. Thi...Jan 6·15 min read
blog.raulnq.comHono and Drizzle ORMAs modern web applications demand increasingly robust data access patterns, the combination of Hono's lightweight framework with Drizzle ORM's type-safe database operations creates a powerful stack for building performant APIs. We'll build upon an ex...Dec 30, 2025·10 min read
blog.raulnq.comHono: Error Handling and SecurityBuilding production-ready APIs requires robust error handling and security mechanisms. This article explores how to implement comprehensive error handling using the RFC 7807 Problem Details standard and secure our Hono application using built-in midd...Dec 23, 2025·6 min read