Nowadays, there are many web development frameworks available. The State of JavaScript about FrontEnd framework stats shows that React and Vue lead, but Svelte is the new rising star. PReact and Alpinejs are climbing up the ladder.
React
React is a library that lets you create a view with its virtual DOM. It gives great simplification — the development is faster, you can put HTML inside JavaScript code, also known as JSX syntax. React functions by following unidirectional data flow or one-way data binding. The benefit of this approach gives control throughout the application. Two-way data binding requires additional features, and the major cause to be inapplicable to React is the immutability of its components, so the state must be unaffected by any changes. React is used by many tech giants like Facebook, Twitter, Instagram, Netflix, Uber, Tesla, Airbnb, PayPal, Canva, Alibaba.
Vue
Vue and React share a lot in common — Virtual DOM, separate concerns for state management ( Vuex and Redux ), routing and navigating, etc. React is a library, while Vue is a progressive framework. The view layer is built with HTML templates. Data processing in Vue can be achieved through one-way binding as well as two-way binding. It is suitable for small and medium web projects which require flexibility and is simplified to develop with the fastest data processing speed. To the question “ Which technology to choose React or Vue”, one of our senior developers, Andrey Popov, says: “It’s a comprehensive territory, if you would like to have 2 or 3 cross-functional teams with a lot of senior developers, you may find it difficult and the situation becomes more complicated. Vue is a great library for small teams, but there isn’t a winner between React and Vue”. Some of the companies that use Vue  are  Gitlab, Nintendo, Adobe, Behance, FlightAware, Bigo.
Svelte
Svelte is a free and open-source front-end compiler created by Rich Harris, and it represents a new approach to building user interfaces. Most of the work that React and Vue do happens in the browser, while Svelte shifts its work into a compile step. Using virtual DOM, the browser must perform additional work to turn declarative functionalities into DOM activities. Alternatively, Svelte runs at build time, and its components are converted into imperative code that updates the DOM. With the new version 3 of Svelte, the reactivity out of the component API. Same structure as Vue — script, style, template.
Vite
Vite, coming from the French word for fast and pronounced /vit/, is a next-generation build tool for the web, especially if you’re targeting newer browsers. Its primary purpose is to be your next-best tool for starting a new JavaScript-based project — React, Vue, Svelte, Preact. As Evan You says: Vite is essentially what you could use to replace and create react app and Vue-CLI. It consists of two parts: a server that handles the source files with rich built-in features and fast Hot Module Replacement (HMR) and a build command that can output optimised static assets for production.
PReact
It’s not a new implementation of React, it is a 3kb alternative developed by Jason Miller. It’s one of the fastest Virtual DOM libraries. It builds on reliable platform features, performs real event handlers and can be used with other libraries. PReact can be applied in the browser skipping the transpilation steps. Some of the use cases include a self-contained web widget or a PWA and in apps where performance is prioritised because of its minimal size.
AlpineJs
It’s a lightweight framework — it’s used like jQuery, written like Vue, and inspired by Tailwind CSS. It’s designed to write markup-driven client-side JavaScript, and it’s not for building SPAs. You can use it as a direct script included from a public CDN. Alpine’s secret is that it doesn’t use Virtual DOM — no transpiling step, no render, no reconciliation, and it’s simple to use.
NextJs
It is one of the most popular tools in the React ecosystem and gives you all the features you need for production — hybrid static and server rendering, smart bundling, route prefetching. It improves the performance and SEO of your app, and gives the advantage for rapid feature development. Next.js is built on top of React.
NuxtJs
NuxtJs is a framework built on top of Vue. Nuxt is based on a robust modular architecture that contains more than 50 modules. The most common mode — SSR (a.k.a server-side rendered mode) Node server delivers the HTML templates in Vue components to the client as opposed to the pure JavaScript. The basic Nuxt application structure covers everything you need for a great beginning and arranging your code in an intelligible manner.
Angular
If we observe again the first image, one of the conclusions that comes to our mind is that Angular is dying. However, after becoming familiar with it, you have all in-one-framework supported by Google. Angular is a full-stack MVC framework, while React is only a view library. Angular uses real DOM, two-way data binding, its directives allow developers to assign special behaviours to the DOM. Dependency injection makes components more reusable, easier to manage and test. As a strong defender of Angular, our senior developer Stefan B. Stefanov comments: “I wouldn’t say that Angular is dying. In comparison to Vue and React, the learning curve of Angular demands much more effort because it’s a full feature framework. This is the main reason why it’s going down the chart.” Popular enterprises using Angular are Gmail, UpWork, PayPal, Deutsche Bank, Forbes.
NestJs
NestJS is a new forward-looking Node framework for creating efficient and adaptive server-side applications. Building blocks of NestJs are modules used to organise the code and split features into logical reusable units, providers, designed to abstract any form of complexity and logic and controllers, which handle the requests and responses. Under the hood is express.js, the structure of the application in Nest is Angular based. Nest uses bullet-proof architectural patterns and lets you build REST and MVC applications, microservices and more.
P.S. A special thanks to Andrey Popov and Stefan B. Stefanov, who peer-reviewed this blog post and made it even more informative and useful with their up-to-date tech knowledge!