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.5KB

9 년 전
9 년 전
9 년 전
9 년 전
9 년 전
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <a href="#"><img alt="rex" src="https://raw.githubusercontent.com/goanywhere/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. ## Golang
  6. - [X] v1.4
  7. - [X] v1.5
  8. - [X] v1.6
  9. - [X] v1.7
  10. ## Intro
  11. 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.
  12. ## Getting Started
  13. Install the package, along with executable binary helper (**go 1.4** and greater is required):
  14. ```shell
  15. $ go get -v github.com/goanywhere/rex/...
  16. ```
  17. ## Features
  18. * Flexible Env-based configurations.
  19. * Awesome routing system provided by [Gorilla/Mux](//github.com/gorilla/mux).
  20. * Group routing system with middleware modules supports
  21. * Non-intrusive/Modular design, extremely easy to use.
  22. * Standard & modular system based on [http.Handler](http://godoc.org/net/http#Handler) interface.
  23. * Command line tools
  24. * Auto-compile/reload for .go & .html sources
  25. * Browser-based Live reload supports for HTML templates
  26. * **Fully compatible with the [http.Handler](http://godoc.org/net/http#Handler)/[http.HandlerFunc](http://godoc.org/net/http#HandlerFunc) interface.**
  27. After installing Go and setting up your [GOPATH](http://golang.org/doc/code.html#GOPATH), create your first server.
  28. ``` go
  29. package main
  30. import (
  31. "io"
  32. "net/http"
  33. "github.com/goanywhere/rex"
  34. )
  35. func main() {
  36. app := rex.New()
  37. app.Get("/", func(w http.ResponseWriter, r *http.Request) {
  38. io.WriteString(w, "Hello World")
  39. })
  40. app.Run()
  41. }
  42. ```
  43. Then start your server:
  44. ``` shell
  45. rex run
  46. ```
  47. You will now have a HTTP server running on `localhost:5000`.
  48. ## Settings
  49. 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.
  50. ``` go
  51. package main
  52. import (
  53. "io"
  54. "github.com/goanywhere/env"
  55. "github.com/goanywhere/rex"
  56. )
  57. func index(w http.ResponseWriter, r *http.Request) {
  58. io.WriteString("Hey you")
  59. }
  60. func main() {
  61. // Override default 5000 port here.
  62. env.Set("PORT", 9394)
  63. app := rex.New()
  64. app.Get("/", index)
  65. app.Run()
  66. }
  67. ```
  68. You will now have the HTTP server running on `0.0.0.0:9394`.
  69. 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).
  70. ## Middleware
  71. 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:
  72. ``` go
  73. app.Use(middleware.XSRF)
  74. ```
  75. Since a middleware module is just the standard http.Handler, writing custom middleware is also pretty straightforward:
  76. ``` go
  77. app.Use(func(next http.Handler) http.Handler {
  78. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  79. log.Printf("Custom Middleware Module Started")
  80. next.ServeHTTP(w, r)
  81. log.Printf("Custom Middleware Module Ended")
  82. })
  83. })
  84. ```
  85. Using prefixed (aka. subrouter) router is exactly same as the main one:
  86. ```go
  87. app := rex.New()
  88. app.Get("/", func(w http.ResponseWriter, r *http.Request) {
  89. io.WriteString(w, "index page")
  90. })
  91. user := app.Group("/users")
  92. user.Use(func(next http.Handler) http.Handler {
  93. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  94. log.Printf("this is a protected page")
  95. next.ServeHTTP(w, r)
  96. })
  97. })
  98. ```
  99. ## Benchmark?
  100. 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.
  101. <img alt="wrk" src="https://raw.githubusercontent.com/goanywhere/rex/assets/images/wrk.png">
  102. ## Frameworks come & die, will this be supported?
  103. Positive! Rex is an internal/fundamental project at GoAnywhere. We developed it and we are going to continue using/improving it.
  104. ##Roadmap for v1.0
  105. - [X] Env-Based Configurations
  106. - [X] CLI Apps Integrations
  107. - [X] Performance Boost
  108. - [X] Hot-Compile Runner
  109. - [X] Live Reload Integration
  110. - [X] Common Middleware Modules
  111. - [X] Continuous Integration
  112. - [X] Full Test Converage
  113. - [ ] Context Supports
  114. - [ ] [http.Handler](http://godoc.org/net/http#Handler) interface based rendering
  115. - [ ] Project Wiki
  116. - [ ] Stable API