profile-img
mattn

@mattn_jp

Long-time #Golang user&contributor, @GoogleDevExpert Go, #Vim, #Windows hacker, ex-GitHubStars, #runner.
https://t.co/t2LBoi4Gu9
発言はほぼ冗談です

calendar_today02-04-2007 04:19:11

189,1K Tweets

38,7K Followers

2,6K Following

mattn(@mattn_jp) 's Twitter Profile Photo

大きいのは仰る通り。ちなみに小さい物だと 7~10 MB 程度です。import する内容次第です。

go-wasm-example.netlify.app

account_circle
mattn(@mattn_jp) 's Twitter Profile Photo

tinygo でビルドすると

package main

//export multiply
func multiply(x, y int) int {
return x * y
}

func main() {
select {}
}

この程度の wasm で 140kb 程度。cloudflare workers で動かせます。

account_circle