Micro-kernel & pluggable web framework for Go

Lunny Xiao b59089f239 group of group support 10 سال پیش
public 33870517d0 more tests 10 سال پیش
LICENSE 717e190c9b add some tests 10 سال پیش
README.md 501c0e6f1d docs 10 سال پیش
compress.go 688fe2e87a bug fixed & more tests 10 سال پیش
compress_test.go c252141adf more tests & bug fixed 10 سال پیش
context.go 0f536bc765 new inject methods 10 سال پیش
context_test.go 717e190c9b add some tests 10 سال پیش
doc.go 7bcd1b4dad docs 10 سال پیش
error.go de7211c12a rename 10 سال پیش
group.go b59089f239 group of group support 10 سال پیش
group_test.go 91cc9f5ed2 add group 10 سال پیش
logger.go 0f536bc765 new inject methods 10 سال پیش
logger_test.go f53a062b4a move some handler to contrib 10 سال پیش
logo.png 589171832c add logo 10 سال پیش
param.go 621ded8555 rename & more tests 10 سال پیش
param_test.go 717e190c9b add some tests 10 سال پیش
pool.go 5b95321382 more tests 10 سال پیش
pool_test.go 5b95321382 more tests 10 سال پیش
recovery.go 717e190c9b add some tests 10 سال پیش
recovery_test.go 621ded8555 rename & more tests 10 سال پیش
request.go 717e190c9b add some tests 10 سال پیش
request_test.go 717e190c9b add some tests 10 سال پیش
response.go 0e0a6506c8 add some convience structs 10 سال پیش
response_test.go 717e190c9b add some tests 10 سال پیش
return.go 8014f4a212 return improved 10 سال پیش
return_test.go 857cacd1b1 more tests 10 سال پیش
router.go 91cc9f5ed2 add group 10 سال پیش
router_test.go 5b95321382 more tests 10 سال پیش
static.go c252141adf more tests & bug fixed 10 سال پیش
static_test.go 33870517d0 more tests 10 سال پیش
tan.go 91cc9f5ed2 add group 10 سال پیش
tan_test.go e2e5532e6a remove unused codes 10 سال پیش

README.md

Tango Build Status

Tango Logo

Package tango is a micro & pluggable web framework for Go.

Current version: 0.1.0

Getting Started

To install Tango:

go get github.com/lunny/tango

The very basic usage of Tango:

package main

import "github.com/lunny/tango"

func main() {
    t := tango.Classic()
    t.Get("/", func() string {
        return "Hello tango!"
    })
    t.Run()
}

Then visit http://localhost:8000 on your browser. Of course, tango support struct form also.

package main

import "github.com/lunny/tango"

type Action struct {}
func (Action) Get() string {
    return "Hello tango!"
}

func main() {
    t := tango.Classic()
    t.Get("/", new(Action))
    t.Run()
}

More document, please see godoc and Wiki

Features

  • Powerful routing & Flexible routes combinations.
  • Directly integrate with existing services.
  • Easy to plugin/unplugin features with modular design.
  • High Performance dependency injection embbed.

Middlewares

Middlewares allow you easily plugin/unplugin features for your Tango applications.

There are already many middlewares to simplify your work:

  • recovery - recover after panic
  • logger - log the request
  • compress - Gzip & Deflate compression
  • static - Serves static files
  • logger - Log the request & inject Logger to action struct
  • param - get the router parameters
  • return - Handle the returned value smartlly
  • request - Inject request to action struct
  • response - Inject response to action struct
  • session - Session manager
  • xsrf - Generates and validates csrf tokens
  • bind - Bind and validates forms
  • render - Go template engine
  • dispatch - Multiple Application support on one server
  • tpongo2 - Pongo2 teamplte engine support

Getting Help

License

This project is under BSD License. See the LICENSE file for the full license text.