在Go Web Language中提供静态内容

时间:2014-08-29 18:22:29

标签: go

我想使用GO语言服务器上提供 html,css和js文件 。告诉我这样做的优化方法。

限制:不必使用任何框架。

2 个答案:

答案 0 :(得分:3)

一个很好的起点是library negroni

  • 它不是框架:它是一个专门用于net / http的库。
  • 它有多个渲染,例如unrolled/render,可以轻松渲染JSON,XML和HTML模板:这也可以提供其他内容的提示。

答案 1 :(得分:0)

package main
import "net/http"
func main() {
        http.ListenAndServe(":8080",http.FileServer(http.Dir("/path/to/static/content")))
}

http://code.google.com/p/go-wiki/wiki/HttpStaticFiles