Why are front end developers so high in demand at startups if front end development is relatively easier than other fields of engineering?
13th February 2012
My answer to Why are front end developers so high in demand at startups if front end development is relatively easier than other fields of engineering? on Quora
You’re starting with an invalid assumption. Front end development is absolutely not “easier” than other forms of engineering.
When you’re writing server-side code, you’re writing for one language on one operating system with (usually) one database implementation. Write the code, test that it works, go home.
Front end developers have to write code that works in dozens of different environments. It’s not just different browsers (IE/Firefox/Safari/Chrome/Opera)—it’s also the different versions of those browsers. IE 6, 7, 8, 9 and 10 all have their own bugs and limitations. Mobile is even worse—hundreds of different browser/OS/device variations, and even Android has bugs and even feature regressions on different browser versions.
To make things worse, they have to do most of their work in HTML and CSS, which provide extremely limited tools for working around bugs (hence the past decade’s obsession with CSS hacks). JavaScript helps a lot here because at least you can use feature detection (though that in itself is controversial due to the performance overhead)—but now you’re handling even more code branches and potential areas for bugs to creep in.
Not to mention that a good frontend engineer will need an understanding of web performance—which incorporates everything from DNS lookup times to HTTP caching behaviour to minification build scripts to CSS layout engine implementation details.
Oh, and they’re on the frontline of web application security, so they need to understand CSRF, XSS, Click Jacking, DNS pinning (that was a fun one), UTF-7 character encoding attacks...
And these days there’s responsive design, media queries, HTML5 AppCache, WebGL, CSS transforms, SVG, Canvas, localStorage, WebSockets and so on to worry about as well—each one introducing exciting new capabilities, and each one introducing brand new browser support challenges to figure out.
Seriously. Server-side developers have it easy.
More recent articles
- llamafile is the new best way to run a LLM on your own computer - 29th November 2023
- Prompt injection explained, November 2023 edition - 27th November 2023
- I'm on the Newsroom Robots podcast, with thoughts on the OpenAI board - 25th November 2023
- Weeknotes: DevDay, GitHub Universe, OpenAI chaos - 22nd November 2023
- Deciphering clues in a news article to understand how it was reported - 22nd November 2023
- Exploring GPTs: ChatGPT in a trench coat? - 15th November 2023
- Financial sustainability for open source projects at GitHub Universe - 10th November 2023
- ospeak: a CLI tool for speaking text in the terminal via OpenAI - 7th November 2023
- DALL-E 3, GPT4All, PMTiles, sqlite-migrate, datasette-edit-schema - 30th October 2023
- Now add a walrus: Prompt engineering in DALL-E 3 - 26th October 2023