Svelte. Not famous one but good one…
I guess, many web developers may not heard about Svelte. It is one man show by Rich Harris. It is also called as “CYBERNETICALLY ENHANCED WEB APPS”. “CYBERNETICALLY” ? Right, it needs explanation. Firstly, Let’s me share with you main page of svelte… https://svelte.dev/ You can realize that Svelte takes the responsibility of lots work. Let’s go over one by one. Compiler It has strong compiler. On the other hand, React, Angular and Vue.js are just library so they inject core javascript libraries to your page. In aspect of Svelte , at the end of the compilation process, pure Javascript bundle is created which can manage full operations on DOM without Virtual DOM need. Moreover, the build output is optimized and minimized. Here is the "helloworld" sample for Svelte. Bundle just 3KB! Easy and Quickly Running Let’s think about Angular project. You need to deal with many configuration files like routing,component. As for Svelte, at first you will have just two files "mai...