nova icon indicating copy to clipboard operation
nova copied to clipboard

Web framework for Erlang.

Results 21 nova issues
Sort by recently updated
recently updated
newest added

**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....

enhancement

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

enhancement

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

documentation
help wanted
good first issue

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

enhancement
help wanted

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).

documentation
help wanted

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

documentation
good first issue

This section should also be updated with new way of routings.

documentation

We should update the routes section to handle the new way of routes.

documentation

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

testing

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