I’ve spent years wrestling with various web frameworks, primarily in the JavaScript ecosystem. Recently, I noticed something fascinating about Claude 3.7: it performs remarkably better when working with Phoenix (Elixir) compared to many JavaScript frameworks. And this despite the fact that I don’t even know Elixir or Phoenix! I’ve simply let Claude 3.7 handle it for me. I believe that this reflects something deeper about design philosophy and the principles of integrated systems.
Integrated Systems are Powerful
Consider this comparison table from Saša Jurić’s presentation “The Soul of Erlang and Elixir” at GOTO 2019 (Jurić is also the author of “Elixir in Action”). I find it particularly illuminating:
What we see in Server A is a collection of excellent but disconnected tools. Server B shows an integrated approach where core functionality is baked into the platform itself. This difference profoundly affects how Claude 3.7 understands and generates code for these systems.
The Paradox of Choice in Everyday Code
Claude 3.7 can write better Phoenix code for me - someone who doesn’t know Phoenix - than it writes JavaScript code, a language I use every day. Why? I believe it comes down to architectural clarity.
In JavaScript, Claude has to first decide: “Which ORM should I use for this project? Prisma? TypeORM? Or maybe something trendy like Drizzle?” This decision paralysis leads to more hallucinations, as Claude might mix APIs that exist in one framework but not another.
With Phoenix, it appears that Claude doesn’t face the same dilemma. The conventions seem to give it guardrails, even though I can’t verify the quality of the code myself through direct knowledge of Elixir. The paradox is that by limiting choices through conventions, frameworks like Phoenix actually enable greater accuracy.
This insight made me realize something about my own development process too. I wouldn’t consider myself a Senior Developer, but I know how to program and design software. Yet sometimes, when deciding on architecture, I tend to overcomplicate things. I subconsciously get stuck in the same decision paralysis that seems to affect Claude. When this happens, I usually force myself to just write the solution in code first, rather than spend hours deliberating what message system or authentication implementation I should use. In a way, Phoenix’s conventions might be doing for Claude what my “just start coding” approach does for me: cut through the analysis paralysis to get things done.
JavaScript
Working with junior developers in JavaScript, I’ve witnessed firsthand the struggle with its fragmented ecosystem. There’s almost too much freedom. When I ask a junior to implement authentication or a particular UI component, they face a barrage of questions: Which packages? Which patterns? Which state management? The flexibility that makes JavaScript powerful also makes it confusing for beginners.
What’s remarkable is that Claude 3.7 seems to struggle with the same issues. Complex systems with too many moving parts and inconsistent patterns are hard for both humans and AI to master. The fact that Claude can generate what appears to be functional Phoenix code while I find its JavaScript output more hit-or-miss speaks volumes.
Where is My Code Running?
Platform uncertainty compounds these issues. When Claude generates JavaScript, it doesn’t always know where that code will run. Is it NodeJS? Bun? Cloudflare Workers? Is it even server-side at all? The lack of environmental context derails Claude’s ability to help implement features effectively.
Meanwhile, Elixir code almost certainly runs in the server, inside a Phoenix environment with well-understood conventions, giving Claude a much clearer target. This certainty seems to translate directly into more accurate and useful code generation.
What This Taught Me About Software Design
These observations about Claude 3.7’s performance reveal a broader truth about software design: systems designed with integrated components and clear conventions may be more accessible to both AI and humans.
It’s almost counterintuitive. I can work more effectively with Claude on a technology I don’t know (Phoenix) than one I use daily (JavaScript) because the underlying design philosophy of the framework provides more structure. Some might argue that I simply haven’t programmed enough to master JavaScript’s ecosystem and develop a good intuition for building software systems, and that’s fair. But I think the argument still stands: structure and convention create clarity, whether you’re a novice, experienced developer, or Claude. That structure guides Claude toward more consistent, sensible solutions regardless of my expertise level.
As we build the next generation of web applications and increasingly incorporate AI assistants into our workflow, perhaps we should reconsider the value of frameworks that make hard architectural decisions for us. In giving up some flexibility, we might gain something more valuable: systems where the parts work together by design, not by accident. Systems that even AI can more readily understand.
The question isn’t just “Which framework is better?” but “Which framework creates a clearer mental model?” As my recent experience suggests, the answer might matter even more in an AI-assisted development world than we previously thought.