本文永久链接 – https://tonybai.com/2024/02/18/some-changes-in-go-1-22| tonybai.com
Go 1.23 Release Notes| go.dev
TL;DR ¶ I’ve just released jub0bs/cors, a new CORS middleware library for Go, perhaps the best one yet. It has some advantages over the more popular rs/cors library, including a simpler API, better documentation, extensive configuration validation, a useful debug mode, stronger performance guarantees. Here is a representative example of client code: package main import ( "io" "log" "net/http" "github.com/jub0bs/cors" ) func main() { mux := http.NewServeMux() mux.HandleFunc("GET /hello", ha...| jub0bs.com
こんにちは、バックエンドエンジニアをしています武山 (bushiyama) です。 ANDPADボードという稼働管理アプリのバックエンドを担当しています。 andpad.jp これはなに Go 1.22 リリースパーティにて登壇発表した内容を、実例コードを添えてあらためて起稿したものです。 当日の資料は別途こちらを参照ください。 speakerdeck.com 発表したこと Go 1.22 のお祝いということでリリー...| ANDPAD Tech Blog
本文永久链接 - https://tonybai.com/2024/02/18/some-changes-in-go-1-22 美国时间2024年2月6日,正当中国人民洋溢在即将迎来龙年春节的喜庆祥和的气氛中时,Eli Bendersky代表Go团队在Go官博发文“Go 1.22 is re| tonybai.com
A brief introduction to Go for programmers who haven't used Go before: Why use it? The standard library. And the language itself.| benhoyt.com