nova
nova copied to clipboard
Web framework for Erlang.
**Is your feature request related to a problem? Please describe.** Want to support older systems **Describe the solution you'd like** There's two applications that makes this harder: thaos and logger....
There's a cool project called "Nitro" (https://github.com/synrc/nitro) which is based on Nitrogens core functionality. I think we can use it for some cool stuff (Like Phoenix LiveView). Lets investigate and...
Yes. So it comes from endpoint in the routing file that points to a controller. If the function in that controller returns {ok, Variables} Nova will render the view with...
It would be so nice with proper handling of models in Nova. One alternative would be to use `erldb` or `boss_db` even thou the latter one is not so active...
We should try and develop a simple benchmark that can compare Nova to other frameworks (A raw cowboy application would also be really interesting to compare against).
Erlang and Rebar3 is something that is used in Nova. We should add a section pointing to [Adopting Erlang](https://adoptingerlang.org/docs/development/setup/). In the directory guides we keep markdown files with guides and...
This section should also be updated with new way of routings.
We should update the routes section to handle the new way of routes.
This is a really important issue since it allows us to ensure that a release is working before tagging it. My suggestion is that we introduce unit-tests for early catches...
Phoenix have a very neat way of handling non-expected results of a controller via a *fallback controller* (https://hexdocs.pm/phoenix/Phoenix.Controller.html#action_fallback/1). This commit includes a similar way of handling this. A fallback controller...