Revel - Go Web Framework (original) (raw)
A flexible web framework for the Go language.
Latest Release:
v1.1.0 on 2022-04-11
Go: v1.17+ required
Platform features
Hot Code Reload
Edit, save, and refresh. Revel compiles your code and templates for you, so you don't miss a beat. Code doesn't compile? It gives you ahelpful description. Run-time code panic? Revel has you covered.
Flow Control
Revel is built around composable middleware called filters, which implement nearly all request-processing functionality. Developers have the freedom to replace the default filters with custom implementations.
Migration Friendly
Already have an application started ? No problems, migrate easily to Revel by passing the path that you want your mux to handle toRevels Mux, and all requests for that path will be passed to that your Http muxer.
Reusable MVC Components
Revel has modules. These are reusable MVC components that you can implement across all your projects. No need to copy and paste your code with these.
Stateless
Revel provides primitives that keep the web tier stateless for predictable scaling. For example,session data can be stored in the user cookie, and the cache is backed by a memcached cluster, redis or in-memory.
A simple declarative routing syntax. Type-safe reverse routing.
Revel organizes endpoints into Controllers. They provide easy data binding and form validation.
Revel makes Go Templates simple to use at scale.
Register functionality to be called before or after actions. They can be activated per Controller.
More general functionality can be implemented with Filters.