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
XSLTで作るBrainfuck処理系
makki_d
0
210
つよそうにふるまい、つよい成果を出すのなら、つよいのかもしれない
irof
1
290
Beyond Portability: Live Migration for Evolving WebAssembly Workloads
chikuwait
0
380
Claude Codeの使い方
ttnyt8701
1
130
Cursor AI Agentと伴走する アプリケーションの高速リプレイス
daisuketakeda
1
120
Datadog RUM 本番導入までの道
shinter61
1
300
F#で自在につくる静的ブログサイト - 関数型まつり2025
pizzacat83
0
310
型付きアクターモデルがもたらす分散シミュレーションの未来
piyo7
0
800
地方に住むエンジニアの残酷な現実とキャリア論
ichimichi
2
540
Create a website using Spatial Web
akkeylab
0
290
Gleamという選択肢
comamoca
6
740
LINEヤフー データグループ紹介
lycorp_recruit_jp
0
760
Featured
See All Featured
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.7k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.3k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
124
52k
Bash Introduction
62gerente
614
210k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
130
19k
Rails Girls Zürich Keynote
gr2m
94
14k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Thoughts on Productivity
jonyablonski
69
4.7k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
920
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