Why is modern web development so complicated?
1–10 of 731 posts
Re: Why is modern web development so complicated?
#2Re: Why is modern web development so complicated?
#3Re: Why is modern web development so complicated?
#4The generators can also do things in really dumb ways that make it slow or resource intensive and you'll have no clue why your elegant solution is running like a dog unless you go through and read the horrible generated code to see what it is actually doing.
Re: Why is modern web development so complicated?
#5Setup a web server: * VM from Cloud provider * Installing a bunch of staff * Throwing in a k8s cluster * Service mesh * Yaml files * Various network configuration * DNS * Firewall * Security etc.
Re: Why is modern web development so complicated?
#6Re: Why is modern web development so complicated?
#7So now we have meme frameworks and transpilers and hysterical build toolchains all for a platform for sharing documents.
Re: Why is modern web development so complicated?
#8The downside of using a code converter is that when something does break, the browser is going to show you the generated code and you have to map that back into your original code. If the generated code is ugly (hint: it's always ugly) then this can be a real problem. The generators can also do things in really dumb ways that make it slow or resource intensive and you'll have no clue why your elegant solution is runn…
Re: Why is modern web development so complicated?
#9It's not just web development that is hard. You can't honestly say any toolchain on the desktop side is any easier.
That said, web development is getting easier now that the dust is settling and only a few major frameworks are used.
Get started with create-react-app. React is the industry standard, use it.
1) Install NodeJS
2) npx create-react-app demo