You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
9 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <a href="#"><img alt="rex" src="https://raw.githubusercontent.com/go-rex/rex/assets/images/rex.png" width="160px" height="64px"></a>
  2. ===
  3. [![Build Status](https://travis-ci.org/goanywhere/rex.svg?branch=master)](https://travis-ci.org/goanywhere/rex) [![Coverage](http://gocover.io/_badge/github.com/goanywhere/rex?0)](http://gocover.io/github.com/goanywhere/rex) [![GoDoc](https://godoc.org/github.com/goanywhere/rex?status.svg)](http://godoc.org/github.com/goanywhere/rex)
  4. Rex is a library for modular web development in [Go](http://golang.org/), designed to work directly with net/http.
  5. ## Intro
  6. Nah, not another **Web Framework**, we have that enough.The more we spend on [Go](http://golang.org/), the more clearly we realize that most lightweight, pure-stdlib conventions really do scale to large groups of developers and diverse project ecosystems. You absolutely don’t need a *Web Framework* like you normally do in other languages, simply because your code base has grown beyond a certain size. Or you believe it might grow beyond a certain size! You truly ain’t gonna need it. What we really need is just a suitable routing system, along with some common toolkits for web development, the standard idioms and practices will continue to function beautifully at scale.
  7. ## Getting Started
  8. Install the package, along with executable binary helper (**go 1.4** and greater is required):
  9. ```shell
  10. $ go get -v github.com/goanywhere/rex/...
  11. ```
  12. ## Features
  13. * Flexible Env-based configurations.
  14. * Awesome routing system provided by [Gorilla/Mux](//github.com/gorilla/mux).
  15. * Group routing system with middleware modules supports
  16. * Non-intrusive/Modular design, extremely easy to use.
  17. * Standard & modular system based on [http.Handler](http://godoc.org/net/http#Handler) interface.
  18. * Command line tools
  19. * Auto-compile/reload for .go & .html sources
  20. * Browser-based Live reload supports for HTML templates
  21. * **Fully compatible with the [http.Handler](http://godoc.org/net/http#Handler)/[http.HandlerFunc](http://godoc.org/net/http#HandlerFunc) interface.**
  22. After installing Go and setting up your [GOPATH](http://golang.org/doc/code.html#GOPATH), create your first server.
  23. ``` go
  24. package main
  25. import (
  26. "io"
  27. "net/http"
  28. "github.com/goanywhere/rex"
  29. )
  30. func main() {
  31. app := rex.New()
  32. app.GET("/", func(w http.ResponseWriter, r *http.Request) {
  33. io.WriteString(w, "Hello World")
  34. })
  35. app.Run()
  36. }
  37. ```
  38. Then start your server:
  39. ``` shell
  40. rex run
  41. ```
  42. You will now have a HTTP server running on `localhost:5000`.
  43. ## Settings
  44. All settings on Rex can be accessed via `env`, which essentially stored in `os.Environ`. By using this approach you can compile your own settings files into the binary package for deployment without exposing the sensitive settings, it also makes configuration extremly easy & flexible via both command line & application.
  45. ``` go
  46. package main
  47. import (
  48. "io"
  49. "github.com/goanywhere/env"
  50. "github.com/goanywhere/rex"
  51. )
  52. func index(w http.ResponseWriter, r *http.Request) {
  53. io.WriteString("Hey you")
  54. }
  55. func main() {
  56. // Override default 5000 port here.
  57. env.Set("PORT", 9394)
  58. app := rex.New()
  59. app.GET("/", index)
  60. app.Run()
  61. }
  62. ```
  63. You will now have the HTTP server running on `0.0.0.0:9394`.
  64. Hey, dude, why not just use those popular approaches, like file-based config? We know you'll be asking & we have the answer as well, [here](http://12factor.net/config).
  65. ## Middleware
  66. Middlware modules work between http requests and the router, they are no different than the standard http.Handler. Existing middleware modules from other frameworks like logging, authorization, session, gzipping are very easy to integrate into Rex. As long as it complies the standard `func(http.Handler) http.Handler` signature, you can simply add one like this:
  67. ``` go
  68. app.Use(middleware.XSRF)
  69. ```
  70. Since a middleware module is just the standard http.Handler, writing custom middleware is also pretty straightforward:
  71. ``` go
  72. app.Use(func(next http.Handler) http.Handler {
  73. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  74. log.Printf("Custom Middleware Module Started")
  75. next.ServeHTTP(w, r)
  76. log.Printf("Custom Middleware Module Ended")
  77. })
  78. })
  79. ```
  80. Using prefixed (aka. subrouter) router is exactly same as the main one:
  81. ```go
  82. app := rex.new()
  83. app.GET("/", func(w http.ResponseWriter, r *http.Request) {
  84. io.WriteString(w, "index page")
  85. })
  86. user := app.Group("/users")
  87. user.Use(func(next http.Handler) http.Handler {
  88. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  89. log.Printf("this is a protected page")
  90. next.ServeHTTP(w, r)
  91. })
  92. })
  93. ```
  94. ## Benchmark?
  95. Rex is built upon [Gorilla/Mux](//github.com/gorilla/mux), designed to work with starndard `net/http` directly, which means it can run as fast as stdlib can without compromise. Here is a simple [wrk](https://github.com/wg/wrk) HTTP benchmark on a RMBP (2.8 GHz Intel Core i5 with 16GB memory) machine.
  96. <img alt="wrk" src="https://raw.githubusercontent.com/goanywhere/rex/assets/images/wrk.png">
  97. ## Frameworks come & die, will this be supported?
  98. Positive! Rex is an internal/fundamental project at GoAnywhere. We developed it and we are going to continue using/improving it.
  99. ##Roadmap for v1.0
  100. - [X] Env-Based Configurations
  101. - [X] CLI Apps Integrations
  102. - [X] Performance Boost
  103. - [X] Hot-Compile Runner
  104. - [X] Live Reload Integration
  105. - [X] Common Middleware Modules
  106. - [X] Continuous Integration
  107. - [X] Full Test Converage
  108. - [ ] Unified Rendering
  109. - [ ] Project Wiki
  110. - [ ] Stable API