acrolink

acrolink

Phoenix vs. Laravel

Any experiences on the topic? Anyone ditched Laravel in favor of Phoenix/Elixir?

Most Liked

carterbryden

carterbryden

I was primarily building stuff with laravel before moving to Phoenix several years ago. I’m not very hands-on up to date with laravel since about v5 but I still keep an eye on things. I

originally looked elsewhere because I was doing a fair bit of real-time/websocket stuff and I always had to reach outside of PHP and laravel to do that anyways. And I was interested in the mental model of functional programming - or at least the very basics of it - as compared to OOP. Functional just felt so much more direct and easier for me to reason about, personally.

My general thoughts on Phoenix vs Laravel, in no particular order:

  • Laravel has an incredible suite of features and products to go along with the base, all of which are remarkably cohesive with unusually high attention paid to detail and devx. That’s very hard for any language or framework that I’ve come across to beat.
  • PHP has made a lot of improvements over time and is quite a pleasant language to deal with these days, despite age old memes.
  • Fundamentally, at the lower and middle levels of abstraction, I think Elixir is a better language in most ways. Not because PHP is bad, but because Elixir/Erlang are just an incredible confluence of CS ideas that work very well together, have been steadily refined for decades, and make some really hard things very easy. Things that are increasingly becoming more important over time, like concurrency, distributed computing, reliability guarantees (maybe not literally, but practically) etc.
  • Elixir and Phoenix’s feature set for real-time is much, much better in my opinion.
  • The building blocks for things like caching, background processing, and many more are much better in Elixir and Phoenix. Laravel’s packaged solutions for these are still better out of the box because of the care and effort put into them, but I think we are close on many of those and it’s just generally a lot easier for us to build them.
  • The biggest difference I notice between laravel and Phoenix on a daily basis is that it’s sometimes easier to get the common app stuff up and running more quickly on Laravel (CRUD, auth, integrations) but not way easier. And when I need to dig deep on stuff, I personally find Elixir and Phoenix to be more powerful and flexible, in a way that’s very easy for a solo dev to build them.
  • It’s a pretty close comparison in my head, which says a lot about the high quality of Laravel, because I feel pretty strongly about how amazing Elixir and Phoenix are.
14
Post #4
w0rd-driven

w0rd-driven

I haven’t ditched Laravel but I have heavy investments in both camps. Phoenix isn’t really 1:1, it’s closer to a Sinatra where something like Rails has more overlap with Laravel. You get different primitives with the BEAM where you don’t need to reach for something like Redis since ETS is right there. Oban is arguably a better queue processor than what Laravel gives you but Laravel also gives you Horizon. You can work out some intricate workflows in either system. It may be user error but I don’t have a clear look at what jobs are actively running in Horizon where I have more tools to monitor Oban. I haven’t tried recreating my most difficult workflows from Laravel to know how those pain points measure up.

You can piece together a few dependencies to get you close experiences I’d imagine. There is also a difference in underlying behavior.

Dependencies are a liability in any system but in Laravel I’m more of a conductor, gluing fairly robust packages together to rapidly focus on the business need. I’ve maybe “chosen poorly” for a problematic package very few times since starting with it in 2017. With Elixir it’s generally easy to spin up an API client on top of Req as opposed to finding a poorly maintained SDK, with the exception of Stripe and Spotify so far. There is no Spatie equivalent dropping a ton of high quality in one place but there is some very high quality in the ecosystem.

Laravel is also a layer higher or tends to stay there. I believe it started by pulling a lot from Symfony to slowly get replaced by Illuminate APIs. Phoenix acts as a thin layer on Plug on purpose. There are parts of something like Ash that is also appealing from a reduction of boilerplate perspective.

This is all over the place like my experience so far. I haven’t rebuilt major systems to have the biggest sample size but given enough time and energy there isn’t anything I’ve missed in a major way. I am looking to see if something like Jetstream can be ported because scaffolding an application shell takes a lot of boilerplate that I get really tired of doing as often as it requires. 1.7 and core components are a great start but I need a bit less friction.

RudManusachi

RudManusachi

I don’t disagree, but to be fair, I’d compare bare bone Plug more to Sinatra.. whereas when people refer to Phoenix most of the time they mean Phoenix + PhoenixHTML + Phoenix.LiveView + Phoenix.PubSub + Swoosh + Ecto + … on Elixir

Which, I think includes enough batteries to be on par with a regular PHP Laravel / Ruby on Rails project.

Where Next?

Popular in Discussions Top

Donovan
Hello everyone, I’m so glad to have discovered this awesome community. Thanks for creating it! This is my second post, and apologies for...
New
Nvim
Anybody knows a comprehensive comparison of Django and Phoenix, thanks for the help. Where are they similar? Where do they differ the m...
New
WildYorkies
It seems that the more I read, the more I find Elixir users speaking about all the ways that Elixir is not good for x, y, and z use cases...
New
AlexMcConnell
The reason that Rails is as popular as it is is because it’s very easy for relatively inexperienced developers to get a lot of work done....
588 19568 166
New
AstonJ
I’ve just started the Phoenix part of the utterly brilliant online course by @pragdave. On generating the Phoenix app he uses the --no-ec...
New
hazardfn
I suppose this question is effectively hackney vs. ibrowse but we are at a point in our project where we have to make a choice between th...
New
cblavier
Hey there, It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
AstonJ
If so I (and hopefully others!) might have some tips for you :slight_smile: But first, please say which area you’re finding most challen...
New
griffinbyatt
Sobelow Sobelow is a security-focused static analysis tool for the Phoenix framework. For security researchers, it is a useful tool for g...
New
kostonstyle
Hi all How can I compare haskell with elixir, included tools, webservices, ect. Thanks
New

Other popular topics Top

9mm
I am constructing a JSON object (map) and I need to conditionally set a field. I’m trying to write proper elixir-way code… and I’m at a l...
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID<0.412.0> terminating ** (Postgrex.Error) FATAL...
New
ovidiubadita
Hey all, I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
jononomo
I am trying to figure out how Mix knows whether the environment is test, dev, or prod – where is this set? Thanks.
New
chrismccord
This release brings a number of exciting features, including integration with the new Phoenix LiveDashboard and Phoenix LiveView. There h...
New
RisingFromAshes
I’ve read in another post that it may be possible with a router helper - but I couldn’t find an appropriate one, and tbh, I’m still just ...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
klo
Got a question about when to concat vs. prepending items to list then reversing to achieve appending. So i know lists boil down to [1 | ...
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
openscript
Hello! Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New

We're in Beta

About us Mission Statement