michael_teter
Hi All.
I have experience with multiple languages and experience with Rails framework, but I don’t yet know anything about Elixir.
If my immediate need is to build a new webapp, and I intend to try with Phoenix (given its positive reviews), is it important for me to first learn Elixir? Or is it easy enough to pickup along the way with Phoenix tutorials?
Thanks in advance!
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
@chrismccord : I just saw the Extract AGENTS.md from Phoenix.new into phx.new generator commit to the phoenix project.
My initial shotgu...
New
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
Just a general thread to post chat/news/info relating to AI/ML stuff that may be relevant for Nx now or in the future. Got anything to sh...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
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
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
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
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Phoenix Threads
Chat & Discussions>Discussions
Latest on Elixir Forum
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
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 16 Posts
hubertlepicki
Do learn Elixir first. It is not Ruby, nor object oriented language.
The Phoenix framework will be easier to pick up once you know Elixir idioms. Iti s also very similar to Ruby. But you will use it better way if you know how Elixir and OTP, umbrella apps work etc.
Edit: also, I found a good way is to build a simple API first to get a feeling of the language/tools, rather than starting with a big project.
krapans
I did in this order.
sotojuan
Please learn Elixir first. Phoenix is not Rails—it’s just a web server with some conveniences. To really take advantage of it, learn the language first and then some OTP.
Do you really need to build a web app now? A week or half a week or learning Elixir will pay off.
outlog
agree with all the others.
I would recommend going through the elixirkoans.io, after you have read up on elixir at elixirschool etc. - gets you through a lot of the syntax.
michael_teter
Fair enough. I have some functional experience with Clojure, so hopefully I can ramp up on Elixir in a week or less. Unfortunately I do have a time sensitive project to do now, and I’m really wanting to not fall back into the old pattern of just using the tools I know (but wish to break free from
).
Thanks for the suggestions!
AstonJ
We’re very lucky to have some really well written books so definitely check them out
Also don’t forget you can get 25% off both Programming Elixir and Programming Phoenix via your control panel on our competition sites (we are giving away a copy of each per month).
As many have pointed out, Elixir and Phoenix while may look familiar if you know Ruby and Rails, but under the hood they are quite different
OvermindDL1
Oh if you have good Clojure experience then although the syntax here is significantly different you will pick up the idioms very quickly. You might even be able to start with phoenix and elixir concurrently without much issue.
Just keep in mind, Phoenix is mostly just a set of plugs, nothing is magical, feel free to look in its source code to see how anything is done.
michael_teter
Sorry, I’m not clear how to exercise the discount on pragprog.com. I’m new here, so I don’t know what the competition sites are…
AstonJ
Here ya go
sotojuan
Here’s a really good example of why knowing the language well pays off:
https://redd.it/5qsquu
See the first answer.