The only requirement is the Go Programming Language
go get -u github.com/forgoer/mux
package main
import (
"fmt"
"http"
"github.com/forgoer/mux"
)
func main() {
m := mux.New()
m.HandleFunc("/", HomeHandler)
m.HandleFunc("/products", ProductsHandler)
m.HandleFunc("/articles", ArticlesHandler)
http.ListenAndServe(":8080", &m)
}