Nova Blog Posts

Please post your Nova blog posts here :023:

See main-blog-post-threads for others in this series.

3 Likes

Check out my first tutorial on how to build an Erlang Web Api using Nova Framework and Redis as a data store !

Building an Erlang Web Api using Nova Framework and Redis | by Bercovici Adrian Simon | Oct, 2022 | Medium

3 Likes

Fantastic to see this.

After this blog me and Niclas started to discuss fallback module. Where you can send things that the controller doesn’t handle.

case something (X) of
ok → {status, 204};
Error → {error, Error} %% this would go to a fallback module for better logging or 500 errors
end

3 Likes