#Golang-Web-Server

20 articles

08 How to Understanding File Server in Golang

08 How to Understanding File Server in Golang

Introduction to File Server Golang has a feature called FileServer. With this we can create a Handler in Golang Web that we have used as a static file server and this FileServer does not need to be manually loaded again.

07 How to Understanding Cookie in Golang

07 How to Understanding Cookie in Golang

Introduction to Cookies Before discussing Cookies, we need to know that HTTP is stateless between client and server, which means the server does not store any data to remember every request from the client.

06 How to Used Response Code in Golang

06 How to Used Response Code in Golang

Introduction to Response Codes Something we also need to know about HTTP is the response code.

05 How to Used Request Form Post in Golang

05 How to Used Request Form Post in Golang

Introduction to Post Forms Similar to the previous post, when we use the GET method, the results of all the data in the form will be a param query, whereas if we use POST then all the data in the form is sent via the body of the HTTP Request, only the method is different.

04 How to Used Request Header in Golang

04 How to Used Request Header in Golang

Header Introduction Apart from query parameters on HTTP, we can also use Headers.

03 How To Used Query Parameter in Golang

03 How To Used Query Parameter in Golang

Introduction to Query Parameters Query parameters are one of the features of http that we usually use to send data from the client to the server.

02 How to Used HTTP Test in Golang

02 How to Used HTTP Test in Golang

Introduction to HTTP Testing HTTP Test in Golang has been provided with a special package for creating unit tests for Web features.

01 Introduction Golang Web Server

01 Introduction Golang Web Server

Web Introduction The web is a collection of information available on a computer that is connected directly via the internet.