Golang
Build a Web Server in Go
by Lane Wagner - Boot.dev co-founder and backend engineer
Let's build a fully-fledged HTTP server from scratch in Go. This course assumes you already have a solid understanding of Go. If you don't, take a step back and take our Go course.
Build a Blog Aggregator in Go
by Lane Wagner - Boot.dev co-founder and backend engineer
We're going to build an RSS feed aggregator in Go! It's a web server that allows clients to:
Are Pointers in Go Faster Than Values?
by Lane Wagner - Boot.dev co-founder and backend engineer
I was recently working on a lesson about pointer performance for Boot.dev's Golang course when I found myself repeating some advice I've given many times before.
Can Go Be Used in Web Development?
by Natalie Schooner - Computer science educator and technical writer
Recently I saw an interesting post on Reddit: "I would like to be more full-stack," user Fenugurod said. "I was studying Tailwindcsss and I'm pretty sure I can create really nice UIs with it. But what do you guys think about web development with Go? Most of my friends simply say to embrace the JS ecosystem with Nuxt or Next and use Go simply as an API."
The One Thing I'd Change About Go
by Lane Wagner - Boot.dev co-founder and backend engineer
Go is built for grug brained programmers like me.
Format on Save in Go with VS Code [2026]
by Lane Wagner - Boot.dev co-founder and backend engineer
Go has hard opinions about how you should style and format your code. Setting up your VS Code environment to enforce the standard linting and formatting rules can save you a ton of time.
How to Become a Golang Engineer (on the Back-End)
by Natalie Schooner - Computer science educator and technical writer
"Guys, I've got an idea. What if we could design a language that's easy to read like Python, but fast? That has a slim feature-set like C, but is good for web development? That's compiled like Java, but doesn't need a VM?"
Is Golang Best For Backend or Frontend Development?
by Natalie Schooner - Computer science educator and technical writer
Put simply, Golang is best for the backend side of a web application or website. There are many reasons that this is the case, so let's dive in, but before we do, let's cover some quick definitions.
How to Round a Float in Go
by Lane Wagner - Boot.dev co-founder and backend engineer
If you're rounding a floating point number in Go, it's most likely you want to format it in a string. Use the built-in fmt.Sprintf() function.
The 7 Best Ways to Learn Golang and Find Your Inner Gopher
by Natalie Schooner - Computer science educator and technical writer
Golang was released in 2012, making it a relatively new language when compared to competitors like Python, which was released nearly two decades prior, yet it's managed to stay ahead of the game as not only a coveted language by employers, but also loved by programmers.
How to Use Golang's Generics [Updated since 1.18]
by Lane Wagner - Boot.dev co-founder and backend engineer
Generics in Go have been released with Go 1.18! This is one of the most eagerly-awaited features since the release of the language. Many devs have gone so far as to say Go's previous lack of generic types made the language too painful to use at all. Let's dive into what generics are, why you might use them in your own projects, and how they work in Go.
Node.js vs Golang: Compared Over 6 Key Areas
by Meghan Reichenbach
In 2009, the computer science world was blessed with two powerful tools: Golang and Node.js.
Go vs C#: Compared Over 5 Key Areas
by Meghan Reichenbach
Golang and C# offer a unique mixture of similarities and differences, having both been inspired by the same language, C.
Scala vs Go: Comparing Everything You Need to Know
by Meghan Reichenbach
Scala and Golang are newer languages, only coming onto the scene after the turn of the century, but in that time they've managed to become two of the highest-paid languages for developers, with the industry benefiting from their fresh creation.
Golang vs Java: 6 Key Comparisons
by Meghan Reichenbach
Golang (or Go) and Java offer an interesting comparison because despite their wide differences, there are also key similarities in how and where they're used by programmers.
What is Go Good For? (And What Is Golang Used For?)
by Jamie Dunmore
In 2007, frustrated by some of C++'s inefficiencies and overcomplicated nature, and desiring a programming language designed specifically for multi-core processors and effectively managing large projects, three Google engineers, Robert Griesemer, Rob Pike, and Ken Thompson, designed the Go language.
Golang vs C++: Which is Best For Your Next Project
by Meghan Reichenbach
Needing to be a math genius to learn to code is a thing of the past. High-level programming languages offer an alternative to low-level machine code, which makes coding more accessible than ever. Let's dive into how Golang, a modern higher-level language, matches up to C++, a tried-and-true low-level language. We'll cover the most important points like which language is more performant, which is easier to learn, which results in cleaner code, and which programming methodologies guide their respective designs.
Quick Sort in Golang
by Lane Wagner - Boot.dev co-founder and backend engineer
Quicksort is an efficient sorting algorithm commonly used in production sorting implementations. Like Merge Sort, Quicksort is a divide-and-conquer algorithm. As the name implies, Quicksort is one of the fastest sorting algorithms, but you have to pay attention to detail in your implementation because if you're not careful, your speed can drop quickly.
How to Write Insertion Sort in Go
by Lane Wagner - Boot.dev co-founder and backend engineer
Insertion sort builds a final sorted list one item at a time. It's much less efficient on large lists than more advanced algorithms like quicksort or merge sort. Insertion sort is a simple algorithm that works just like you would arrange playing cards in your hands. A slice is first split into sorted and unsorted sections, then values from the unsorted section are inserted into the correct position in the sorted section.
Merge Sort in Golang with Examples
by Lane Wagner - Boot.dev co-founder and backend engineer
Merge sort is a recursive sorting algorithm and, luckily for us, it's quite a bit faster than bubble sort. Merge sort is a divide and conquer algorithm.
Writing Bubble Sort in Go from Scratch
by Lane Wagner - Boot.dev co-founder and backend engineer
Bubble sort is named for the way elements "bubble up" to the top of the list. Bubble sort repeatedly steps through a slice and compares adjacent elements, swapping them if they are out of order. It continues to loop over the slice until the whole list is completely sorted.
How to Properly Use Defer in Golang
by Lane Wagner - Boot.dev co-founder and backend engineer
In the Go programming language, defer is a keyword that allows developers to delay the execution of a function until the current function returns. What throws some people off is that the deferred function's arguments are evaluated immediately, but the function itself doesn't fire until the wrapping function exits.
Comprehensive Guide to Dates and Times in Go
by Lane Wagner - Boot.dev co-founder and backend engineer
Keeping track of time in code has long been every developer's nightmare. While no language or package manages time perfectly, I think Golang does a pretty good job out-of-the-box. This full tutorial should answer ~90% of the questions you'll have about time management in Go.
Concatenating with strings.Builder Quickly in Golang
by Lane Wagner - Boot.dev co-founder and backend engineer
The Go standard library makes concatenating strings easy. Concatenation is just a fancy word for adding strings together to make a larger string. For example, if we concatenate "hello", " " and "world" we'd get "hello world".
Golang vs Python: Which Language is Best For You?
by Zulie Rane - Data analysis and computer science techincal author
In a world where the ability to write any code at all is a tremendous advantage, often the biggest problem coders face is knowing which language to start learning, rather than whether to learn one at all. There are different languages for just about every purpose you could think of. Of those popular coding languages, programmers often face an intense battle of Golang vs Python. (The official name is Go, but the website is Golang.org, so programmers typically refer to it as either interchangeably.)
