• v2.0.0 Stable

    Sky released this 2025-05-07 12:45:11 -05:00 | 0 commits to master since this release

    Downloads
  • Sky released this 2025-04-26 15:19:25 -05:00 | 4 commits to master since this release

    In the interest of having an incredibly fast and easy-to-use router, it felt like a good idea to have the router be fully capable with existing HTTP servers. Therefore, the Router has been reworked to be directly integrated with net/http, allowing you to very quickly get up and running with a server.

    r := router.New()
    
    r.Get("/", func(w router.Res, r router.Req, params []string) {
        fmt.Fprintf(w, "Root handler")
    })
    
    http.ListenAndServe(":8080", r)
    
    Downloads
  • Sky released this 2025-04-26 11:39:30 -05:00 | 6 commits to master since this release

    Despite not being the actual first release; this will be our 1.0.0. This makes the router natively compatible with net/http, adds middleware and grouping support, and simplifies usage. Also moves the license from MIT to SML!

    Downloads