TutorialEdge Tutorials
In this video, we'll look at how we can start defining our comment package and service definition.
Encode Go structs to JSON and decode incoming request bodies back into Go objects, so your REST API speaks JSON to its …
In this video, we'll look at how we can define a simple database package that will handle connecting to the database.
In this video, we'll be defining the HTTP endpoints that are effectively going to expose the our comment service.
In this video, we'll look at how we can implement the methods for the comment service we defined in the previous video.
We need a database running in order for us to store our comments. In this video, we look at how you can run postgres …
So, we have our basic app structure defined, let's start looking at how we can build out the server aspect and start …
Migrate your database to create the tables your Go REST API needs, then manually test each endpoint to confirm …
In this video, we are going to look at how we can implement some basic authentication middleware around the endpoints of …
In this article, we are going to look at some of the ways we could have improved the design of our REST API.