Static Page Generator and HTTP Server from Scratch with 0 Dependencies in Elixir
In this post, I’m going to explain how I wrote a blog generator from scratch using Elixir and the standard Erlang library. My motivation? To learn more. What’s the problem with building an HTTP server and a Markdown to HTML transpiler from scratch? It’s divided into two parts, and in this first part, we’ll explore the HTTP server. What we’ll see in this series of posts Create our HTTP server Read requests and display results Respond concurrently Transpile Markdown to HTML How to create templates to include CSS and other elements What is a static site generator? Writing blogs directly in HTML and CSS can be very costly, especially when the site structure is complex. If you inspect this very website, you’ll see it’s written in extremely simple HTML (partly my decision), but imagine we have a much more complex blog with links, tags, multi-level menus, etc. Then things start to get complicated. ...