Menu
Coddy logo textTech
Learning path

Go (Golang) Developer Roadmap

What to learn, in order, to work as a Go developer: the language through interfaces, generics, goroutines and channels, the command line, Git and SQL, then the data structures and algorithms interviews test, and code a team can maintain. It is the foundation for backend services and cloud infrastructure work. Free, hands-on, in your browser.

229,501+ codders enrolled across these courses

664 lessons606 challenges3,165 quiz questions

The Go developer roadmap, step by step

17 courses6 sections664 lessons606 challenges3,165 quiz questions

Each step is made of existing Coddy courses, and every Start button opens them in Go. Take the steps in order, or start with the one you are missing; progress is saved per course.

  1. 1
    Start this stepStartThree sections. Fundamentals covers types, control flow, functions, pointers, arrays, slices, maps, structs and errors; Logic & Flow covers methods, interfaces, error wrapping, panic and recover, packages and time; the section named Object Oriented Programming covers what that means without classes (structs, methods, implicit interfaces, embedding), then generics, goroutines, channels and select, io.Reader and encoding/json, and design patterns. Go's first surprise is how little syntax there is, the second that errors are values you check on every call; learn both properly, because idiomatic Go is what Go code review expects.StartDedicated page
  2. 2
    Start this stepStartFiles and paths, wildcards, grep, pipes and redirection, permissions, environment variables and shell scripts. The go command is a terminal tool (go build, go test, go mod tidy), Go services run in Linux containers, and many Go programs are command-line tools themselves. Environment variables do real work here: setting GOOS and GOARCH is how one laptop cross-compiles a binary for another platform.StartDedicated page
  3. 3
    Start this stepStartStaging, commits, .gitignore, branches, merges and conflicts, undoing mistakes and remotes. Go leans on Git more than most languages: a module's import path is usually its repository's address, and module versions such as v1.2.0 are Git tags. Knowing how commits and remotes work is what makes go get stop being magic.StartDedicated page
  4. 4
    Start this stepStartFiltering, sorting, joins, grouping, aggregates, subqueries, WITH clauses and window functions, on real tables. Go culture leans toward writing SQL by hand: the standard library's database/sql runs the queries you write, and tools such as sqlc generate Go code from plain SQL files, so there is often no ORM between you and the database.StartDedicated page
  5. 5
    Start this stepStartStack, queue, linked list, binary tree and hash table, each built from scratch in Go and then used on problems. Go's built-ins are deliberately few: a slice makes a stack, a map is a hash table, and the container packages add little beyond a doubly linked list, a ring and heap functions, so a tree of structs with pointer fields and nil checks is ordinary Go.Start
  6. 6
    Start this stepStartRecursion challenges, then bubble, selection, insertion, merge and quick sort in Go, the sorts animated in Coddy's algorithm visualizer. The standard library reads differently afterwards: sort.Slice is not stable and sort.SliceStable is, and slices.Sort uses pattern-defeating quicksort. Merge sort is also a natural first exercise in splitting work across goroutines.Start
  7. 7
What you get
Everything you'll use to learn to code

Learn by Doing

Write real code, query databases, build websites, and master AI prompts. Our interactive lessons cover every skill modern developers need.

playground.js
Code Editor
1const greeting = "Hello, Coddy!"
2function sayHi(name) {
3    return greeting + " " + name
4}
5
bottombar Collapse icon
Test #1test Case Success icon
Test #2test Case Success icon
Test #3test Case Failure icon
Input
"Alex"
Output
"Hello, Coddy! Alex"

Build Your Coding Streak

Stay consistent and watch your progress grow! Track your daily coding habit, protect your streak with freeze days, and earn rewards for showing up every day.

12 days streak

Return tomorrow to keep your streak!

fire Filled icon
left icon

January 2026

right icon

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

21

22

23

24

25

26

27

28

29

30

product Double Or Nothing icon

Double or Nothing

Day 5 of 7

fire Freeze icon

Streak Freeze

2 left

Code Anywhere, Anytime

Take your coding journey on the go! No setup, no downloads - just open and start coding. Available on iOS, Android and Web with 4.9 star ratings.

Python
7Streak
250Score
5Energy
Variables
journey Hex Done Base iconjourney Hex Done Shadow iconjourney Hex Done Top iconjourney Lesson Done icon
journey Path Right Done icon
journey Hex Done Base iconjourney Hex Done Shadow iconjourney Hex Done Top iconjourney Lesson Done icon
journey Path Left Done icon
journey Hex Active Base iconjourney Hex Active Shadow iconjourney Hex Active Top iconjourney Lesson Theory Challenge icon
CONTINUE
journey Path Right icon
journey Hex Locked Base iconjourney Hex Locked Shadow iconjourney Hex Locked Top iconjourney Lesson Theory Challenge icon
journey Path Left icon
journey Hex Locked Base iconjourney Hex Locked Shadow iconjourney Hex Locked Top iconjourney Lesson All icon
Journey
Goals
Leaderboard
Profile
4.9
StarStarStarStarStar
Rating

You're Not Alone in This

Compete on global leaderboards, invite friends to earn rewards, and celebrate each other's wins. Coding is better with friends!

Challenger League
Challenger LeagueTop 7 advance
leaderboard First icon1
avatar 1 icon
fire Filled icon
Alex7+ Days
2840
leaderboard Second icon2
avatar 2 icon
fire Filled icon
Jordan7+ Days
2650
leaderboard Third icon3
avatar 3 icon
fire Filled icon
Sam7+ Days
2420
4
avatar 4 icon
Casey
2180
5
avatar placeholder icon
fire Filled icon
Morgan7+ Days
1950
leaderboard Arrow Up iconPromotion zoneleaderboard Arrow Up icon

Every way to learn

Read, listen, test yourself, ask the AI, or look up anything you've already covered. Every lesson meets you where you are.

Intro to Variables
Audio

A variable is a named container that stores a value you can reference later in your program.

In Python, you create one by writing the name, an equals sign, then the value you want to store.

The value can change over time - reassigning the name simply points it to a new value.

1xSarah

Prove Your Skills

Earn certificates for every course you complete. Add them to your LinkedIn profile and resume to showcase your coding expertise to employers.

CoddyCertificate of Completion
This certifies thatJohn Doehas successfully completed
python iconPython Fundamentals
Verified
DateJan 2026
LinkedInAdd to LinkedIn

Why follow this Go roadmap on Coddy

  • Go is the language of cloud infrastructure. Docker, Kubernetes, Terraform and Prometheus are written in it, as are many backend services and command-line tools, which is why Go jobs gather on backend, platform and DevOps teams. This roadmap builds what those teams expect from day one.
  • Concurrency in the course, not an appendix. Goroutines, channels, select, mutexes and sync.WaitGroup are taught inside the Go course, along with the idioms that make Go code reviewable: embedding over inheritance, errors wrapped and checked, small interfaces. It ends in a library project that saves its data as JSON.
  • Interview practice in Go. The stack, queue, linked list, binary tree and hash table, the recursion challenges and the five sorts are all taught in Go, so you practice in the language you want to be hired for.
  • Graded, hinted, nothing to install. Each lesson closes on a Go challenge that test cases grade; when one fails, Bugsy points at the problem, goroutine bugs included, without writing the fix. Most courses end with a free certificate, and no Go toolchain is needed: it all runs in the browser.

Frequently asked questions about becoming a Go developer

How long does it take to become a Go developer?

From zero, six to twelve months at about an hour a day to reach a junior interview; from another language, much less, because Go is small. On this roadmap the Go course takes eight to ten weeks, the command line, Git and SQL about a month together, and the data structures and sorting steps two more. Then build a small service of your own with net/http and a database, which is the kind of work Go teams hire for.

Is Go a good first language for a software engineer?

Yes. The language is small enough to learn completely, gofmt and the compiler remove whole categories of beginner mistakes and style arguments, and errors are ordinary values you must check, which builds careful habits. The trade-offs are fewer beginner resources than Python or JavaScript and a job market concentrated in backend and infrastructure roles.

What does a Go developer need to know besides Go?

The command line, Git and SQL, which this roadmap covers, then the environment Go runs in: HTTP and JSON APIs, Docker and Kubernetes, a relational database, and how to observe a running service through logs, metrics and profiles. Go's standard library covers much of the web layer, so the step after this roadmap is usually net/http and a real service rather than a large framework.

Does Go have classes and object-oriented programming?

No classes and no inheritance, but it has what object-oriented code is for: structs with methods, interfaces a type satisfies without declaring it, and embedding to reuse behavior. The Go course's section named Object Oriented Programming teaches exactly that, composition over inheritance, which is how Go code is organized at work.

Which course on this roadmap is not taught in Go?

One: clean code is taught in Python only so far, so it is listed after the steps rather than in step seven. Go settles most style questions with gofmt, so what is left is what that course teaches: names, function size and where responsibilities live. One of the Go proverbs says it directly: clear is better than clever. Every step, the object-oriented project and the coding problems included, is in Go.

Is this Go roadmap free?

Yes. Every course on it is free: the lessons, the Go editor and the Linux terminal in your browser, the test-graded challenges, Bugsy's hints and the certificates. Pro removes the daily energy limit and adds unlimited AI help, and nothing on this roadmap requires it.

Other learning paths

The same courses, arranged for a different role. Progress carries over: a course finished on one path counts on every path that includes it.

All learning paths
Coddy programming languages illustration

Start the Software Engineer path for free

Start learning