Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.79 KB

README.md

File metadata and controls

35 lines (27 loc) · 1.79 KB

Golang Server Study Notes

Language Status

📝 A collaborative study repository from GDG on Campus: Kyunghee for learning Go server development.
Contains notes and example codes based on book references. 📝


📂 Study Overview

  • week1: Basics of Go syntax and environment setup
  • week2: Intermediate concepts, including structs, interfaces, and error handling
  • week3: Concurrency (goroutines, channels) and interoperability with C
  • week4: HTTP Middleware for web development

🚀 How to Run Examples

  1. Clone the repository:
  2. git clone https://github.com/gleaming9/Golang-server-study.git
  3. Navigate to each week's folder and run the examples:
  4. cd week1
    go run main.go

📖 About

This repository was created as part of the GDG on Campus: Kyunghee study group to record our journey in learning Go server development. It serves as a log of the concepts we studied together, based on example codes from a Go reference book.

🔗 Next Steps

The study in this repository has been completed. The next phase of this study will continue in the go_todo_app repository, where we will focus on building a full-featured todo application as part of our advanced Go server development journey.