How I built a Blog app using Edge Functions
The app I am talking about, dk2wxu79mqll8.cloudfront.net Tech Stack, Hono for easy routing and APIs Cloudflare Workers for Edge functions and deployment Prisma ORM to work with PostgreSQL Prisma Ac...

Source: DEV Community
The app I am talking about, dk2wxu79mqll8.cloudfront.net Tech Stack, Hono for easy routing and APIs Cloudflare Workers for Edge functions and deployment Prisma ORM to work with PostgreSQL Prisma Accelerate for Connection Pool NeonDB for Postgres Database on Cloud React + Vite for Frontend Development Tanstack Query to make API requests Tanstack Router for file-based routing AWS S3 for deployment of Frontend Build AWS Cloudfront CDN for distribution of Frontend npm to make custom package for Zod type to use both in FE and BE Zod for validations and types This project will have 3 directories at the end, blogs/ ├── backend/ ├── common/ └── frontend/ In backend/ dir, we will write our Hono application. Hono Why we chose Hono to write routing and API logic? Because cloudflare workers can't run express as it relies heavily on Node.js specific APIs. Cloudflare has developed its own runtime other than Node to make the edge runtime faster. Cloudflare official doc suggests 2 frameworks to develo