go-zoox / zoox

A Lightweight Web Framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zoox - A Lightweight Web Framework

PkgGoDev Build Status Go Report Card Coverage Status GitHub issues Release

Installation

To install the package, run:

go get github.com/go-zoox/zoox

Getting Started

package main

import "github.com/go-zoox/zoox"

func main() {
	app := zoox.Default()

	app.Get("/", func(ctx *zoox.Context) {
		ctx.Write([]byte("helloworld"))
	})

	app.Run(":8080")
}

DevTools

# install
go install github.com/go-zoox/zoox/cmd/zoox@latest
# dev
zoox dev
# build
zoox build
## License
GoZoox is released under the [MIT License](./LICENSE).

About

A Lightweight Web Framework

License:MIT License


Languages

Language:Go 100.0%