Tag Archives: golang

Building a RESTful API in Go Using Mux and Logrus

This Golang tutorial help to create http rest call using mux package. I am not using any framework, Its use only core golang programming to create http rest call.

I am creating a rest call that will take id as parameters and return as a json data, Next tutorial will have how to handle JSON data with Golang http package.

Continue reading

Building GoLang Restful API Using Echo and MySQL

This is another rest api tutorial that help to create restful api using echo framework and MySQL database. We will create CRUD operations on employee module that will have create record, get all records and delete record.

I have left update record functionality, This work for you to create rest call to update record into MySQL database.I am using MySQL database to store and get data, Already shared Creating a Go(lang) API with Echo Framework and PostgreSQL.
Continue reading

Creating a Go(lang) API with Echo Framework and PostgreSQL

This go lang tutorial help to create CRUD operation api using postgreSQL database.We will create rest api to add, edit and delete record from postgreSQL table.Its very simple and easy using ECHO web framework. This 'todo' application help to create employee record, update employee and delete employee from database using Echo framework.
Continue reading