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 a helpful description. Run-time code panic? Revel has you covered. Revel provides routing, parameter parsing, validation, session/flash, templating, caching, job running, a testing framework, and even internationalization. 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. Already have an application started ? No problems, migrate easily to Revel by passing the path that you want your mux to handle to Revels Mux, and all requests for that path will be passed to that your Http muxer. 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.
Features
- Revel implements Go's builtin dependency management tool go mod
 - Revel provides primitives that keep the web tier stateless for predictable scaling
 - Session data can be stored in the user cookie, and the cache is backed by a memcached cluster, redis or in-memory
 - Install and Build the Revel command-line tool and install sample applications
 - Revel organizes endpoints into Controllers, they provide easy data binding and form validation
 - Revel makes Go Templates simple to use at scale