Upcoming Phoenix Authentication Solution

<p>I&rsquo;m in the middle of writing an application in <a href="https://elixir-lang.org">Elixir</a> and <a href="https://www.phoenixframework.org">Phoenix</a>, so when I saw a link to <a href="https://dashbit.co/blog/a-new-authentication-solution-for-phoenix">an article by José Valim</a> on an upcoming authentication solution for Phoenix, my initial reaction (before reading it) was negative. José is the author of the <a href="https://github.com/plataformatec/devise">Devise framework</a> for Ruby-on-Rails, so I assumed it was going to be the same idea, but for Elixir and Phoenix. I&rsquo;ve implemented Devise in a handful of Rails apps, and each and every time I ended up ripping it out and writing my own auth solution (often based on <a href="http://railscasts.com/episodes/250-authentication-from-scratch-revised">this Railscasts tutorial</a>). The reason is that while authentication works similarly in most apps, there are always 1 or 2 business requirements that fall outside of what Devise can do in a simple and straightforward manner. Yes, Devise is very flexible there are hooks to add logic and a number of extensions available, but that makes for code that is hard to follow and understand. And something as crucial as authentication needs to be well understood by the maintainers of any web application.</p> <p>But to my great satisfaction, José said exactly this!</p> <blockquote> <p>While this made Devise more flexible and general purpose, it also made it more complex. A complex codebase is harder to be audited, which is important in authentication systems. Furthermore, the existence of too many options and customization hooks makes it extremely hard to guarantee that the authentication system will continue be secure under all possible customization combinations.</p> </blockquote> <p>His authentication &ldquo;solution&rdquo; is not a framework, but a code generator. It gets you started with the basic code you need to roll your own authentication. It&rsquo;s not finished yet, but I&rsquo;ve looked over the code and it&rsquo;s <em>exactly</em> what I&rsquo;ve been wanting for Phoenix. It will make spinning up a new app dramatically simpler. 👏</p>