Summary of Building a Web Application
Explore the process of building a web application in Deno by defining architecture goals, creating modular folder structures, and implementing HTTP endpoints. Learn to separate business logic from data access and delivery layers to maintain flexibility. Understand the community’s HTTP frameworks, focusing on Oak for routing and handling requests.
We'll cover the following...
Recap
In this chapter, we finally started building an application that leverages our knowledge of Deno. We started by considering the main goals we’ll have when we build an application and define its architecture. These goals will set the tone for most of our conversations regarding architecture and structure throughout this course because we’ll keep going back to them, ensuring that we’re in line with them.
We started by creating our folder ...