Building a module in Go (Golang)
Learn to build a reusable, well-tested module in Go
4.8 ★ | (17 ratings) | 429 students | Author:Trevor Sawler
Course Duration:
10 sections • 58 lectures • 4h 13m total length
Description:
Working with web applications in Go is remarkably easy, but it does not take too long to realize that in a lot of cases, we end up writing the same kind of code every time we start a new project. You might need to read JSON, write JSON, upload files, or any of the commonly used features of a given web application. In other words, we often rewrite code that we have already written, many times over.Rather than simply copying and pasting code from one project to another, it makes sense to take advantage of Go modules — reusable code that can be included in a project by simply issuing a “go get” command. That way, if new functionality is added to that module, any project that imports it can take advantage of that functionality simply by updating its dependencies, and if a bug is discovered, you can fix it by updating the module; every project that uses that module gets the bug fix with a single “go get -u” command.Building a robust, secure, well-tested module is not difficult, but it does require careful planning to ensure that it will work across different operating systems.This course will take you through the steps necessary to produce a module that includes many of the tasks commonly used in web applications, including:reading JSONwriting JSONproducing well formatted, informative error messagesuploading one or more files to a server, and limiting uploads by mime type and file sizecreating directories on the servergenerating random stringsdownloading static filesposting JSON to a remote servicecreating a URL safe slug from a stringWe’ll build our module using Go 1.18’s new workspaces tools, and we’ll ensure that the entire module is well-tested.Our final module will not have any external dependencies, and will only use functionality found in Go’s standard library.By the time you have finished this course, you’ll have a Go module that will make starting a new web application much faster, and you won’t be depending on someone else’s code to do so.
Requirements:
#Some experience with the Go programming language is required.
What you’ll learn:
#How to build a platform agnostic, re-usable Go module
#How to share your module with other Go developers
#How to write tests for your module
#How to manage multiple versions of your module
#How to use Go 1.18’s new go work feature, workspaces
Who this course is for:
#This course is intended for Go developers who want to build and share modules (sometimes called packages) for use by other developers, or in their own projects.
Source:
/user/trevor-sawler/
Notes: If this Author or Course helped you improve your life. It is really worth it if you go and buy his/her course. Get feedback, support and help by his/her community. The Author support is much more valuable than the course itself.