Go每日一库之142:esc(嵌入静态文件)

2023-09-30 08:51:16 浏览数 (1)

与 go-bindata 类似,esc 同样提供了将静态文件转换为go源码并暴露了类似于http.FileSystem的API来读取数据的功能。

安装

代码语言:javascript复制
go get -u github.com/mjibson/esc

使用

https://github.com/mjibson/esc#example

对比:

  • https://github.com/jteeuwen/go-bindata
  • https://github.com/GeertJohan/go.rice
  • https://github.com/mjibson/esc
  • https://github.com/rakyll/statik
  • https://github.com/gobuffalo/packr

go-bindata、go.rice 和 esc 简单对比:https://studygolang.com/articles/5068 esc 没有 go-bindata 那样丰富的API,但会将嵌入的字节数据压缩,大大缩小了代码以及编译后的二进制程序体积。

0 人点赞