Skip to content

A powerful go web framework for highly scalable and resource efficient web application

Notifications You must be signed in to change notification settings

Andrew-stew/webfr

 
 

Repository files navigation

webfr

forthebadge

  • A powerful go web framework for highly scalable and resource efficient web application

Installation:

go get -u github.com/krishpranav/webfr

Examples:

package main

import (
    "github.com/krishpranav/webfr"
)

func main() {
    wb := webfr.New()

    wb.Get("/hello", func(ctx webfr.Context) {
        ctx.SendString("Helo Friends!!")
    })

    wb.Start(":3000")
}
  • for more tutorials visit the docs

About

A powerful go web framework for highly scalable and resource efficient web application

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 98.0%
  • Python 2.0%