How EEx Turns Your Template Into HTML (opens in new tab)
From Mitchell Hanberg's Blog: EEx is a templating language and module built into the Elixir standard library, often used by web servers to render dynamic content for a web application. The same concept exists in other language ecosystems, ERB for Ruby, Blade for Laravel/PHP, Pug/Jade for JavaScript. A couple features of EEx that make it stand out are: - Templates can be compiled into functions ahead of time, avoiding needing to read from the file system at runtime. - EEx has the concept of an...
Read the original article