Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 396 Bytes

File metadata and controls

10 lines (7 loc) · 396 Bytes

Http server from scratch in Go

🧩 Overview

  • Using net package from go std lib
  • Unix syscalls (low level) completely from scratch

✅ Some factors to remember

  • windows isn't unix based so it wont work using unix, you can use golang.org/x/sys/windows or if you want to stay unixified use WSL tool
  • on unix based systems it will work as exepected