Categorygithub.com/go-zoox/zoox
repositorypackage
1.15.13
Repository: https://github.com/go-zoox/zoox.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

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).