Skip to content

Instantly share code, notes, and snippets.

@jakejscott
Created May 20, 2014 00:53
Show Gist options
  • Save jakejscott/ef21fdb774a2fe6d5c6b to your computer and use it in GitHub Desktop.
Save jakejscott/ef21fdb774a2fe6d5c6b to your computer and use it in GitHub Desktop.
negroni + httprouter
package main
import (
"fmt"
"github.com/codegangsta/negroni"
"github.com/julienschmidt/httprouter"
"net/http"
)
func main() {
// mux := http.NewServeMux()
// mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
// fmt.Fprintln(w, "Welcome to the homepage using http router")
// })
router := httprouter.New()
router.GET("/", func(w http.ResponseWriter, req *http.Request, _ map[string]string) {
fmt.Fprintln(w, "Welcome to the homepage using http router")
})
n := negroni.Classic()
//n.UseHandler(mux)
n.UseHandler(router)
n.Run(":9999")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment