Earlier quoted context omitted.
> doing things "the hard way" from scratch In the current landscape doing things "the hard way" in plain JS is often simpler than with React. You will give up reactivity, testability, declarative rendering, and the ability to hire any passersby, in exchange for not having to deal with a rube goldberg contraption of hooks, dependency tracking, query caches and state management, with a complex build system. Terrible id…
>In the current landscape doing things "the hard way" in plain JS is often simpler than with React. I'm not sure what "simpler" means to you. It is extremely simple to create and deploy a framework based app; `npm create vue` give it a name, answer a few questions or accept the defaults. I find programming in such an environment very "simple", because the framework is hiding a lot of complexity. > You will give up re…
That’s completely missing the point. Of course it’s easy that way, and starting from scratch. The complexity was just handled by someone else.
> if you have a codebase that has those issues
every reasonably large React codebase has these issues. If you have an example pointing otherwise I’d love to see it!