TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: real-world examples of HTTP servers in Elixir?

2 pointsby TXVover 6 years ago
I need to develop some small frontend for internal use at my company and I have absolute freedom over the tech stack.<p>I decided to take this opportunity to learn Elixir.<p>The requirements of this project are very simple. I&#x27;s a server which fetches some data from another HTTP API and uses it to render a bunch of HTML pages.<p>I&#x27;m following the Elixir tutorials on the official site. I would like at the same time to explore a real-world project that implements my requirements, to see what a complete working application would look like.<p>Do you know of any such open source repo? Thank you!

2 comments

elcritchover 6 years ago
It’s not an existing site, but any of the ‘make a blog in 15 min’ tutorials [1] will get you to working code examples quickly. The Elixir build utility `mix` has great tools for creating new projects and the example project will scale easily into what you want to try. Also, GenServer’s are a good way to retrieve _and_ cache the data from the other http server, following the KV supervisor tutorial would be a good starting point.<p>1: <a href="https:&#x2F;&#x2F;medium.com&#x2F;@kacpx123&#x2F;phoenix-1-3-simple-blog-api-and-postman-tests-b7fadd3394ab" rel="nofollow">https:&#x2F;&#x2F;medium.com&#x2F;@kacpx123&#x2F;phoenix-1-3-simple-blog-api-and...</a> 2: <a href="https:&#x2F;&#x2F;github.com&#x2F;learnphoenixtv&#x2F;blog" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;learnphoenixtv&#x2F;blog</a> 3: <a href="https:&#x2F;&#x2F;medium.freecodecamp.org&#x2F;simple-extensible-blog-built-with-elixir-and-phoenix-61d4dfafabb1" rel="nofollow">https:&#x2F;&#x2F;medium.freecodecamp.org&#x2F;simple-extensible-blog-built...</a>
jamil7over 6 years ago
The only one I can think of is the changelog podcast site <a href="https:&#x2F;&#x2F;github.com&#x2F;thechangelog&#x2F;changelog.com" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;thechangelog&#x2F;changelog.com</a> I haven&#x27;t read the source but I imagine it would cover your usecase.