noob
Hi,
I know of one tutorial: https://phoenixonrails.com/
Any others out there? Book or online?
Also I want tutorials that concentrate on Phoenix and not Liveview. I think there is a lot of unexplored territory there not addressed by the current tutorials I’ve encountered.
Thanks
Trending in Chat/Questions
Hey folks, I’ve been using Elixir for over a couple of years (phx, ecto, broadway, oban).
For this kind of work you do not tend, in my e...
New
Hi, I’m Dheeraj Sudan from the UK. I’m a software developer and also run a business with my wife Meenu Hinduja. I’m interested in getting...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 9- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
sodapopcan
If you haven’t looked already (as it’s very common that people don’t), the official Phoenix Guides are very in depth without going into LiveView (that’s left up to the LiveView guides). It depends on what you are looking for, of course. I’ve never read anything other than those myself (and I could probably use a refresher, honestly).
noob
Yeah I looked at those. There are some topics that they cover superficially which may better be done in more detail in a tutorial or reference. Like going in-depth on how to construct forms with the new form components.
Also I used the mix tool to generate a CRUD resource so I can understand how to do it by hand but I was mystified by some of the generated code I saw. I was surprised to see a function declaration without a body. I had to use google and saw it was a way to document functions among other things. A minor frustration.
michallepicki
I liked TDD Phoenix by @germsvel , but it’s still using Phoenix 1.5 unfortunately. Recently I also found dwyl/phoenix-todo-list-tutorial
D4no0
You will most probably will never find a tutorial that will cover everything.
I would recommend to get started with some basic tutorials. I strongly recommend not using generators, ecto or anything else to minimize the noise.
Phoenix by itself is built on very simple concepts, once you understand how Plugs work, and heex, you will pretty much know 80% of how framework works.
sodapopcan
It’s true stuff can be hard to find in the guides without following through start to finish. It’s a known issue that with hexdocs things can be a bit confusing since related things are separated up into their specific applications. In the case of Phoenix, you’re going to end up touching Phoenix, Ecto, and LiveView even if you don’t plan on using LiveView (since there is component documentation there). But the Phoenix guides are super thorough and will point you in the right direction if you read top to bottom. They are written in a tutorial style with links to relevant docs along the way that go into even more detail, so it’s worth the time investment if you’re up for it.
Pal
Dockyard Academy offers a thorough treatment of 1.7, as well as a later sections on LV.
https://github.com/DockYard-Academy/curriculum
ElixirCasts
noob
Thanks, I’ll check.
noob
Thanks, I’ll take a look!