AndyL
Ruby has Sinatra for simple web apps. In the Elixir world, there have been a few approaches to emulate Sinatra, using Cowboy, Plug.Router, or custom frameworks.
With Phoenix 1.7 I had a look at Bandit a new web server. With Bandit and Plug it’s easy to build a simple Sinatra-like server. Here’s an example written as an Elixir script:
#!/usr/bin/env elixir
Mix.install([{:bandit, "~> 0.5"}])
defmodule Router do
use Plug.Router
plug :match
plug :dispatch
def run do
Bandit.start_link(plug: Router)
Process.sleep(:infinity)
end
get "/" do
send_resp(conn, 200, "HELLO")
end
match _ do
send_resp(conn, 404, "Not found")
end
end
Router.run()
Has anyone else experimented with Bandit & Plug.Router? What is your experience pro/con?
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Quite interesting article Google brought me. Didn’t find any mentions about it here.
What do you think in general? Would you use togethe...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Since we have deprecated our Erlang sections (as we have dedicated Erlang Forums now) let’s add this thread for those who’d like to post ...
New
What IDE or editor are you using for Elixir development?
Personally, I use Zed, and I really like it, but sometimes I wish there were a ...
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex











Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
tmecklem
I love Sinatra in Ruby. My primary use case is to stand up fake servers for third party APIs instead of using things like VCR. I do the same in Elixir, but I just
use Plug.Routerand addplug(:match)in with cowboy as the implementation, and I get 90% of what Sinatra gives with the DSL path matching and all that. The rest is just plugs for auth, etc.I haven’t checked out bandit too much yet.
I can say that it’s a huge pro for small things that don’t need a lot of orchestration and benefit from having the code in one place. I think I’d drop the straight Plug.Router for Phoenix if I knew my use case would grow over time to need its features and benefits.
LostKobrakai
Most often I’d argue what the reason is to not go for phoenix.
It has some useful additions on top of pure plug (e.g. conveniences like
:put_secure_browser_headersor simpler CSRF handling) + websockets/channels. If you strip down phoenix it’s hardly less code than a plug based approach:Adding LV in the mix makes it 84 loc, most of the additional lines being the LV itself.
So unless the “single module approach” is really the selling point – like e.g. the mentioned usecase of testservers – I’d always go straight for phoenix, because things are likely to grow to a point where it makes sense. You can still use
Plug.Routeras your router instead of a phoenix one.kip
I think of Bandit more as an alternative to Cowboy, not an alternative to Phoenix. Indeed with Phoenix 1.7 you can run Phoenix apps on either Cowboy or Bandit. The rest of it is just the boilerplate to get a plug-based app up and running on the HTTP server of choice.
mtrudel
(Bandit author here)
@kip is right on the money - Bandit is a an alternative to Cowboy (hence the lousy naming pun). The analog to Sinatra in the Elixir community would be
Plug.Router, which is actually a really great little bit of tooling.Plug.Router is just a Plug, so you can run it on top of any Plug-supporting webserver (Cowboy or Bandit, basically).
I talk about this in the ElixirConf talk where I introduced Bandit:
derpycoder
It works flawlessly with Phoenix 1.7!!
And it’s a 2 line change!!
https://github.com/mtrudel/bandit#using-bandit-with-phoenix