Elixir Plugs
Of late, I have been writing some Elixir code to build an API layer for Soopr, a SaaS tool I am...
Tag archive
Of late, I have been writing some Elixir code to build an API layer for Soopr, a SaaS tool I am...

Adding custom headers to Phoenix framework requests
Coming myself from the java world (e.g. Microprofile spec) and knowing JWT implementation there, I wo...
The goal of today's blog is to understand what is Elixir Plug and how to use it to write REST API in...

how to build a Phoenix app from scratch, letting users upload their files!
Trip down Elixir's Plug, what it means, how it works and a bit more
A practical example demonstrating how to use Plugs in Elixir.

When processing a HTTP request takes too long, Phoenix closes the connection. In this article we see how to simulate a long-running request and configure the Cowboy webserver timeout.
Cowboy is an amazing web server that is used by Plug/Phoenix out of the box, I don't think Phoenix su...