Which web frameworks should I focus on to make myself the most well rounded and to be able to solve the most problems as a web application developer/architect?
18th January 2012
My answer to Which web frameworks should I focus on to make myself the most well rounded and to be able to solve the most problems as a web application developer/architect? on Quora
Being an expert web developer isn’t about which framework you know, it’s about the fundamentals. It’s important that you know how the tools you are using work, so you can fix things when they break—Joel Spolsky’s law of leaky abstractions is a great essay about this: http://www.joelonsoftware.com/ar...
So pick a modern framework, but make sure you’re learning how web technology works. You need to understand all aspects of HTTP, including cookies, caching, content negotiation etc. You need to understand web application security: XSS, CSRF, the OWASP top ten. You need a very solid appreciation of front end development technologies—CSS, HTML, JavaScript—even if you don’t specialise in front end engineering most backed decisions you make need to take these in to account.
Then there are the systems architecture concerns: persistence, sharing, replication, when and where to apply both SQL and NoSQL technologies, load balancing and so forth.
The web framework you use ends up being a relatively small part of the overall problem—it’s just the bit that passes an incoming HTTP request through to your custom code, then hands the resulting response back again.
So as long as you pick something that doesn’t prevent you from getting stuck in to the underlying details (a closed source framework would be a bad idea here) you should be fine.
More recent articles
- URL-addressable Pyodide Python environments - 13th February 2025
- Using pip to install a Large Language Model that's under 100MB - 7th February 2025
- OpenAI o3-mini, now available in LLM - 31st January 2025