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.

README.md 5.3KB

9 yıl önce
9 yıl önce
9 yıl önce
9 yıl önce
9 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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) [![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. rex.Get("/", func(w http.ResponseWriter, r *http.Request) {
  32. io.WriteString(w, "Hello World")
  33. })
  34. rex.Run()
  35. }
  36. ```
  37. Then start your server:
  38. ``` shell
  39. rex run
  40. ```
  41. You will now have a HTTP server running on `localhost:5000`.
  42. ## Settings
  43. 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.
  44. ``` go
  45. package main
  46. import (
  47. "io"
  48. "github.com/goanywhere/rex"
  49. )
  50. func index(w http.ResponseWriter, r *http.Request) {
  51. io.WriteString("Hey you")
  52. }
  53. func main() {
  54. // Override default 5000 port here.
  55. rex.Env.Set("PORT", 9394)
  56. rex.Get("/", index)
  57. rex.Run()
  58. }
  59. ```
  60. You will now have the HTTP server running on `0.0.0.0:9394`.
  61. 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).
  62. ## Middleware
  63. 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:
  64. ``` go
  65. app.Use(middleware.XSRF)
  66. ```
  67. Since a middleware module is just the standard http.Handler, writing custom middleware is also pretty straightforward:
  68. ``` go
  69. app.Use(func(next http.Handler) http.Handler {
  70. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  71. log.Printf("Custom Middleware Module Started")
  72. next.ServeHTTP(writer, request)
  73. log.Printf("Custom Middleware Module Ended")
  74. })
  75. })
  76. ```
  77. Using prefixed (aka. subrouter) router is exactly same as the main one:
  78. ```go
  79. app := rex.new()
  80. app.Get("/", func(w http.ResponseWriter, r *http.Request) {
  81. io.WriteString(w, "index page")
  82. })
  83. user := app.Group("/users")
  84. user.Use(func(next http.Handler) http.Handler {
  85. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  86. log.Printf("this is a protected page")
  87. next.ServeHTTP(writer, request)
  88. })
  89. })
  90. ```
  91. ## Benchmark?
  92. 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.
  93. <img alt="wrk" src="https://raw.githubusercontent.com/goanywhere/rex/assets/images/wrk.png">
  94. ## Frameworks come & die, will this be supported?
  95. Positive! Rex is an internal/fundamental project at GoAnywhere. We developed it and we are going to continue using/improving it.
  96. ##Roadmap for v1.0
  97. - [X] Env-Based Configurations
  98. - [X] CLI Apps Integrations
  99. - [X] Performance Boost
  100. - [X] Hot-Compile Runner
  101. - [X] Live Reload Integration
  102. - [X] Common Middleware Modules
  103. - [X] Continuous Integration
  104. - [X] Full Test Converage
  105. - [ ] Unified Rendering
  106. - [ ] Project Wiki
  107. - [ ] Stable API