Chapter 9: Deploying a Deno Application
Deployment is a crucial part of any application. We might build a great application, follow best practices, and write tests, but at the end of the day, when it gets to the user, this is where it will prove its value. As we want this book to be a journey through all the different phases of an application, we'll use this chapter about application deployment to close the cycle.
Note that we didn't—and will not—mention deployment as the final phase of software development, but as one phase of a cycle that will run multiple times. We truly believe that deployments shouldn't be events that everyone is afraid of. Rather, we see them as exciting moments whereby we're shipping features to our users. That's how most companies look at deployments in modern software projects, and we're true advocates of that. Deployments should be something regular, automated, and easy to do. They're the first step in getting...