manhvu
In a large repo, working with module need to add alias too much is quite annoyed and not good for organizing code.
I think better add support for namespace can bring more convenient for dev.
This is a basic example for namespace cross multi modules.
Example:
defmodule MyApp.A do
namespace MyApp.DataProcessing
def a do
# do somethings
end
defmacro macroA(name, opts) do
#...
end
end
defmodule MyApp.B do
namespace MyApp.DataProcessing
def b do
# somethings
end
end
defmodule MyApp.C do
namespace MyApp.DataProcessing
def do_something(data) do
data
|> A.a()
|> B.b()
end
A.macroA :wrapper, type: :json
end
LS can easily to suggest dev in a namespace.
Pros:
- Less typo like add alias for module.
- Make code clean than before.
- Better for LS suggest in case work in namespace.
Cons:
- Make complicated if bring support for
import,requireoruse. - Can make dev confused.
Trending in Proposals: Ideas
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
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 everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
benwilson512
This idea is essentially implemented in the library Boundary GitHub - sasa1977/boundary: Manage and restrain cross-module dependencies in Elixir projects · GitHub
Do you have any thoughts on how this proposal differs, beyond basically the implicit aliasing?
FlyingNoodle
Please don’t. I know this isn’t a democracy but I vote against it.
BartOtten
At mobile so in short:
Now you can
use DataProcessingAliasesin the modules. Mixed ground between explicit and implicit…?manhvu
Thank you for your suggestion, I have an idea wrap a macro for this but need a manual job like put all module name to one place like config for expand macro later.
BartOtten
What would you gain with that? Imho at maximum a few lines less at the cost of macro in macro and a separate config.
Notice you can add multiple namespaces in a single file. So the example I gave can be copied over and over in a ‘config’ file.
As a benefit of the ‘manual macro’ solution you could also add common aliases not in the same ‘namespace’ such as Ecto.Repo. Enforce no aliases in the modules themselves and you get a boundary overview of all namespaces in a single file: every ‘out of pattern’ alias sticks out like a sore thumb.
mudasobwa
The democracy is all about the illusion your vote counts. To vote per se you don’t need a democracy, colorful beans and a couple of amphorae suffice.
manhvu
Oh, I like this way than mine. Thank you so much!
A little of bit more about my case. I usually work with quite large repos, sometimes my project is an umbrella project (after that maybe I split it to multi nodes). Too many modules with long name make me feel tired for remember and repeat again and again in each module. That way I’m finding a new way when work with Elixir.
manhvu
MyApp.DataStoreis alias and need to unquote for using. For simplicity, I created a module like:BartOtten
Ah, forgot about that. Need to expand it before passing it as function argument. Small change but then you can just use module names.