dbrain / soggy

An fast and simple express/sinatra like web framework.. thing.. for Go.
45 stars 1 forks source link

soggy

Fast, simple web framework for go. Based on express and web.go.

app, server := soggy.NewDefaultApp()
server.Get("/echo/(.*)", func (echo string) (string, map[string]string) {
  return "template_example.html", map[string]string{ "echo": echo }
})
server.Use(server.Router)
app.Listen("0.0.0.0:9999")

Features

Installation

Requirements

Steps

$ go get github.com/dbrain/soggy

Examples

See examples.