henrik
I just made a small library to reduce boilerplate when making a new Plug app:
https://github.com/henrik/plug_and_play
I started rewriting a Sinatra app in Plug a while back and got a little frustrated by having to figure out a lot of boilerplate just to get a basic app running. So this is my way of maybe reducing that friction.
I’ve tried to keep it low on magic, and layered – you can have PlugAndPlay own the whole supervision tree, or provide your own with PlugAndPlay.Supervisor as a child.
It might be convenient to have something like this built into Plug itself. But I suspect Plug wants to be mostly low-level and leave these concerns to other libraries.
Would love feedback and thoughts. Try it out the next time you set up a Plug app!
Trending in Announcing
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
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
Hi all!
I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas.
You...
New
Hello
Published a new library - ProcessHub!
ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
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
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
It’s not that it’s vocabulary is too advanced. It’s something worse.
I get lost trying to follow even a paragraph written by Claude. It’...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
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
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
jwarlander
I love the concept, and it looks like it could be a good fit for many apps. However, not being able to customize the port via regular application configuration unfortunately leaves it dead in the water for my purposes
While we do, in some cases, use OS environment for configuration, we also like Conform, and having a nice little config file managed by Puppet. Even if that weren’t an issue, PORT seems to be a little too generic, and doesn’t scale beyond a single endpoint in the same application
We often have a main application endpoint, then another endpoint for monitoring, listening on a different port and responding with metrics in JSON format.
Using application config for PlugAndPlay would still enable the OS environment scenario with a simple one-liner, and also enable any other convention within the Elixir / Erlang ecosystem.
I appreciate that this might be intended as a very simple scaffolding helper for a specific convention; in that case, please just ignore what I’m saying
henrik
Thank you so much for the feedback!
I considered application configuration for ports but it wasn’t necessary for my use case – good to know it is for someone else! I’ll see what I can come up with.
henrik
Alright, I’ve made it possible to set the port number in app config. Please let me know what you think – does this work well for your use case?
Commit: [Backwards incompatible] Can set port via app config · henrik/plug_and_play@2554182 · GitHub
It’s a tricky balance, trying to minimise boilerplate without making things unworkably implicit. Passing in the application module and deriving the router and config from it feels like it’s close to that limit, but hopefully does not cross it.
So now we have
I also considered something like
But I feel that for a boilerplate-reduction library, that’s too much boilerplate…
jwarlander
Depends.. the
port:config would only be needed if you actually must configure the port that way, and since that kind of falls into the “custom requirements” category I’d say that an extra line of code isn’t too bad.The regular use, if you’re happy with OS environment or the 8080 default port, would just be:
The explicitness on the router specification feels a lot better to me at least.
Nice thing is the router + port options could be consistent in both
PlugAndPlay.ApplicationandPlugAndPlay.Supervisor, so if I had multiple endpoints, it would look like:henrik
Thank you, that’s good feedback. I’ve experimented a bit with that now.
Seems if the same supervisor module is used multiple times, you also need to specify an
id, something like:Even after that I’m getting some issues where it fails to start the second app; I’ve yet to figure out why. My process-fu is not very strong yet. The core of the error seems to be:
I’ll keep trying – this is beyond my own use case, but I’m learning a lot.
jwarlander
Hmm.. interesting; with Phoenix, it “just works” when you define an extra Endpoint, so it’s probably doing something under the covers to make that play nice with Cowboy.
christopheradams
Just a quick observation: I think another issue is that the scaffolding won’t allow you to add custom plugs into your builder pipeline, since those need to go between
use Plug.Routerandplug :dispatchin the Router.henrik
Ah, excellent point. Thank you very much!
henrik
So I explored the pipeline thing. It’s definitely possible to do something like
or whatever, but it’s cryptic enough, and reduces boilerplate by such a small amount, that I would rather just state in the README that you shouldn’t use
PlugAndPlay.Routerif you want to customise the pipeline.henrik
Figured out why I got that error: it was simply that I tried running the same router twice on different ports, which does not work. I think Cowboy by default assumes it can refer uniquely to each one based on its module name.
When I specified two different routers, it worked fine. So now I’ve pushed that change:
https://github.com/henrik/plug_and_play/commit/076e69b3df3f7ac871a0c7094737ccd1b99c27fd
I also introduced a
child_specto make things easier: