Web without Frameworks
Sometimes it seams to me that frameworks and libraries solve problems with Javascript and Browsers that don't exist (any more).
As an example you can see that the
Or: code like arr[arr.length-1]
that can be replaced by
arr.at(-1)
.
Or: using the fetch library instead of th fetch method in Node.JS (available since v18).
Much innovation was going on in JavaScript, CSS and HTML in the last 3-5 years and supporting all relevant browsers is quiet simpler since ie11 left the playgroud.
So thinks may happen:
- Implementing SPA applications (especially small web applications) can be implemented without using any framework.
- Implementing components as web components can be used in framework based applications.
- Framework can reduce their code when adopting the available functionality.
- Some libraries will need the status of deprecated
So in the end we have to get more insights on the libraries you used to avoid using outdated and unmanaged libraries.
So here are some links regarding this topic:
- https://plbrault.com/blog-posts/the-problem-with-frameworks-en
- https://www.smashingmagazine.com/2022/01/web-frameworks-guide-part1
- https://www.smashingmagazine.com/2022/02/web-frameworks-guide-part2
- https://thenewstack.io/5-reasons-you-dont-always-need-a-javascript-framework