I wish that were true, I have not seen this in the corporate world and it appears absent in the job opening details of startups.
My experience tells me this:
* If you are really good you can be up and running a new project in something like React in 2 or 3 days.
* If you are really good you can be up and running without any framework at all in about 2 weeks.
* If you don’t use a framework you are forced to make tough design decisions early. This is critically beneficial and pays interest over time. Those decisions allow you to scale in ways frameworks cannot.
* The value of frameworks is over estimated for the wrong reasons and under appreciated for reasons developers don’t immediately see.
* Working directly to the DOM (even without query selectors) is amazingly easy, but it takes practice (just like writing CSS). The value is not the data, but the relationship between the nodes. That line of thinking reminds me of this board game called Othello.
* State management is less easy but still not challenging. https://github.com/prettydiff/wisdom/blob/master/state_manag...