Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Go のライブラリやっていき 💪 #go #golang / Let's creating a...
Search
Osamu TONOMORI
May 16, 2018
Programming
3
2.1k
Go のライブラリやっていき 💪 #go #golang / Let's creating a original library by Go
Gopher 道場 1st grad ceremony LT
Osamu TONOMORI
May 16, 2018
Tweet
Share
More Decks by Osamu TONOMORI
See All by Osamu TONOMORI
About Merpay Architect Team 2021
osamingo
0
1.7k
Gopher's Travel Journal 2018
osamingo
1
1.8k
Google App Engine を利用した、新規 Web サービスの立ち上げ方
osamingo
23
8.3k
GAE/Go の勘どころ
osamingo
10
5k
Go で始める JSON-RPC 入門
osamingo
4
61k
Other Decks in Programming
See All in Programming
『自分のデータだけ見せたい!』を叶える──Laravel × Casbin で複雑権限をスッキリ解きほぐす 25 分
akitotsukahara
2
620
Systèmes distribués, pour le meilleur et pour le pire - BreizhCamp 2025 - Conférence
slecache
0
120
ruby.wasmで多人数リアルタイム通信ゲームを作ろう
lnit
3
400
AIと”コードの評価関数”を共有する / Share the "code evaluation function" with AI
euglena1215
1
130
GraphRAGの仕組みまるわかり
tosuri13
8
530
ペアプロ × 生成AI 現場での実践と課題について / generative-ai-in-pair-programming
codmoninc
1
12k
Select API from Kotlin Coroutine
jmatsu
1
220
初学者でも今すぐできる、Claude Codeの生産性を10倍上げるTips
s4yuba
14
9.3k
Blazing Fast UI Development with Compose Hot Reload (droidcon New York 2025)
zsmb
1
280
Modern Angular with Signals and Signal Store:New Rules for Your Architecture @enterJS Advanced Angular Day 2025
manfredsteyer
PRO
0
190
Team operations that are not burdened by SRE
kazatohiei
1
300
システム成長を止めない!本番無停止テーブル移行の全貌
sakawe_ee
1
160
Featured
See All Featured
A Modern Web Designer's Workflow
chriscoyier
694
190k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
A designer walks into a library…
pauljervisheath
207
24k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.5k
Typedesign – Prime Four
hannesfritz
42
2.7k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
How to Think Like a Performance Engineer
csswizardry
24
1.7k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
17
950
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
Gamification - CAS2011
davidbonilla
81
5.3k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
281
13k
Optimising Largest Contentful Paint
csswizardry
37
3.3k
Transcript
Go のライブラリやっていき @osamingo Gopher Dojo 1st Grad Ceremony 2018/05/16
Agenda 1. 自己紹介 (30 sec) 2. ライブラリ作るモチベーション (1 min) 3.
ライブラリの公開方法 (20 sec) 4. ライブラリを使ってもらうには (3 min) 5. まとめ (10 sec) Gopher Dojo 1st Grad Ceremony 2
自己紹介 主森 理 - Osamu TONOMORI 株式会社メルペイ Software Engineer (Backend)
https://{twitter,github,etc.}.com/ osamingo Gopher Dojo 1st Grad Ceremony 3
ライブラリ作るモチベーション Gopher Dojo 1st Grad Ceremony 4
あぁ、不便だなぁ… Gopher Dojo 1st Grad Ceremony 5
このロジック切り出した方が良いのでは Gopher Dojo 1st Grad Ceremony 6
有名なエンジニアになりたいんや! Gopher Dojo 1st Grad Ceremony 7
正直、モチベーションなんてなんでも良い Gopher Dojo 1st Grad Ceremony 8
ライブラリの公開方法 Gopher Dojo 1st Grad Ceremony 9
ライブラリの公開方法 1. GitHub にアカウントを作ります。 Gopher Dojo 1st Grad Ceremony 10
ライブラリの公開方法 1. GitHub にアカウントを作ります。 2. Public リポジトリを作ります。 Gopher Dojo 1st
Grad Ceremony 11
ライブラリの公開方法 1. GitHub にアカウントを作ります。 2. Public リポジトリを作ります。 3. Go のソースコードを
Push します。 Gopher Dojo 1st Grad Ceremony 12
終了 Gopher Dojo 1st Grad Ceremony 13
補足 gem, npm など中央集権的なリポジトリが、 存在しないので即時公開となる Gopher Dojo 1st Grad Ceremony
14
補足 gem, npm など中央集権的なリポジトリが、 存在しないので即時公開となる (良くも悪くも) Gopher Dojo 1st Grad
Ceremony 15
ライブラリを使ってもらうには Gopher Dojo 1st Grad Ceremony 16
品質を担保する為の3つのチェックポイント Continuous Integration Documentation Static Code Analysis Gopher Dojo 1st
Grad Ceremony 17
Continuous Integration 基本中の基本 正常なビルド、テストを保証する ライブラリという観点だと、Travis CI がオススメ! Matrix に環境を整えられるので、 Build
Tag 利用時などに便利 language: go go: - '1.8.x' - '1.9.x' - '1.10.x' - 'tip' Gopher Dojo 1st Grad Ceremony 18
Continuous Integration Covarage 集計には、CodeCov がオススメ! Chrome Extention が、バリ便利 Ref. GitHub
を快適にブラウジングするための3 種の神器 Gopher Dojo 1st Grad Ceremony 19
Documentation README は、ちゃんと書きましょう! 何が嬉しくなるライブラリなのか、1 文で理解できるように 特に License はちゃんと明記しないと、使う側も困ります Benchmark の結果を乗せると、優位性が明らかになって良い
# Machine: MacBook Pro (Retina, 15-inch, Mid 2015) # CPU : 2.8 GHz Intel Core i7 # Memory : 16 GB 1600 MHz DDR3 BenchmarkEncoder_Encode-8 20000000 107 ns/op 46 B/op 1 allocs/op BenchmarkEncoder_Decode-8 30000000 46.8 ns/op 0 B/op 0 allocs/op PASS ok github.com/osamingo/indigo/base58 3.730s Gopher Dojo 1st Grad Ceremony 20
Documentation GoDoc のありがたさたるや ホスティングしなくて良い コードにコメントすれば自動生成 Example 書けば、ドキュメント上で実行できる https://godoc.org/github.com/{account_name}/{repository_name} Gopher Dojo
1st Grad Ceremony 21
Static Code Analysis Go Report Card 必ず利用してほしい gofmt , go
vet , gocyclo , golint , ineffassign を計測してくれる それだけでなく、 License の有無や、Misspell も判定してくれる 頑張って、評価 A+ をとりましょう 類似サービスとして、CODEBEAT, CODE CLIMATE もある Gopher Dojo 1st Grad Ceremony 22
こんな感じになると気持ちいい Gopher Dojo 1st Grad Ceremony 23
まとめ ライブラリを作るモチベーション なんでも良い ライブラリの公開手順 GitHub にリポジトリ作れば完了 ライブラリを使って貰うには 3 つのチェックポイントを満たす Gopher
Dojo 1st Grad Ceremony 24
Thank you for your attention! Gopher Dojo 1st Grad Ceremony
25