|
via Udemy |
Go to Course: https://www.udemy.com/course/building-restful-in-golang/
Representational State Transfer (REST) is an architectural style for building scalable web services. RESTfulsystems typically communicate over the Hypertext Transfer Protocol (HTTP) by using HTTP verbs. The RESTarchitectural style was first described by Roy Fielding in his doctoral dissertation, in which he described sixconstraints applied to the REST architecture.Here are the six constraints described by Roy Fielding:• Uniform interface• Stateless• Cacheable• Client-server• Layered system• Code on demand (optional) Go is a great technology stack for building applications with the Microservice pattern and itsdesign philosophy intersects with the Microservice architecture pattern. The idiomatic approach of Goprogramming is to develop small pieces of software components as packages and then build applications bycomposing these packages.