Hacker News new | ask | show | jobs
by AA-BA-94-2A-56 876 days ago
A lot of newer technologies solve problems that only very large companies face— mostly to do with scaling multiple systems and synchronising their state.

It’s in these companys’ best interest to recommend these technologies to all developers and companies, because it increases their pool of available hiring talent.

That’s how you get startups writing from the ground up, a micro-service backed SPA with layers of abstraction for the data to pass through; when honestly, a SSR monolith backed by MySQL would be better for them.

1 comments

GraphQL is a great example. Try stepping through all the first and third party code involved in serving up a simple list of records from an SQL database. Mounds of useless abstraction and boilerplate. YAGNI. But the same could be said for SQL databases...