# Rendering
Rendering is the process of taking data from your application or database andpresenting it for the client. The client can be a browser that renders HTML, orit can be another application that consumes JSON as its serialization format.In this chapter we will learn how to render both of these formats using themethods that Go provides for us in the standard library.
- Introduction
- 1. Go Makes Things Simple
- 2. The net/http package
- 3. Creating a Basic Web App
- 4. Deployment
- 5. URL Routing
- 6. Middleware
- 7. Rendering
- JSON
- HTML Templates
- Using The render package
- 8. Testing
- Unit Testing
- End to End Testing
- 9. Controllers
- 10. Databases
- 11. Tips and Tricks
- 12. Moving Forward