๐‘๐ž๐š๐œ๐ญ ๐Ÿ†š ๐€๐ง๐ ๐ฎ๐ฅ๐š๐ซ

mehdikhalfallah

Mehdi Khalfallah

Posted on September 15, 2021

๐‘๐ž๐š๐œ๐ญ ๐Ÿ†š ๐€๐ง๐ ๐ฎ๐ฅ๐š๐ซ

I'am not going to tell you which technology to choose. But I will give you enough "food" for thought for you to choose the technology that suits you and your project best.

โถ ๐—ฃ๐—ฒ๐—ฟ๐—ณ๐—ผ๐—ฟ๐—บ๐—ฎ๐—ป๐—ฐ๐—ฒ
โœ”๏ธ๐‘น๐’†๐’‚๐’„๐’•
Reactโ€™s performance is greatly improved with the introduction of the virtual DOM. Since all virtual DOM trees are lightweight and built on servers, the load on the browser is reduced. Furthermore, since the data-binding process is unidirectional, bindings are not assigned watchers as in the case of Angular. Respectively, no additional workload is created.
โœ”๏ธ๐‘จ๐’๐’ˆ๐’–๐’๐’‚๐’“
Angular performs worse, especially in the case of complex and dynamic web apps.
The performance of Angular apps is negatively affected by bidirectional data-binding. Each binding is assigned a watcher to track changes, and each loop continues until all the watchers and associated values are checked. Because of this, the more bindings you have, the more watchers are created, and the more cumbersome the process becomes.
However, the most recent update of Angular has greatly improved its performance, and it does not lose to React anymore. Moreover, the size of an Angular application is slightly smaller than the size of a React app.

โท ๐”๐ง๐ข๐ฏ๐ž๐ซ๐ฌ๐š๐ฅ๐ข๐ญ๐ฒ:
โœ”๏ธ๐‘น๐’†๐’‚๐’„๐’•
React is a framework used in both web and mobile development. However, for mobile development, it needs to be incorporated with Cordova. Moreover, for mobile development, there is an additional framework โ€“ React Native.
React can be used to build both single-page and multiple-page web applications.
โœ”๏ธ๐‘จ๐’๐’ˆ๐’–๐’๐’‚๐’“
Angular is suitable for both web and mobile development. In mobile development, however, a great share of work is done by Ionic. Furthermore, similarly to React, Angular has an additional mobile development framework. The counterpart of React Native is NativeScript.
Angular can also be used for both single- and multiple-page web apps.

โธ ๐—ฆ๐—ฒ๐—น๐—ณ-๐—ฆ๐˜‚๐—ณ๐—ณ๐—ถ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐˜†
โœ”๏ธ๐‘น๐’†๐’‚๐’„๐’•
React is a framework for UI development, so apps written with React need additional libraries to be used. For instance, Redux, React Router, or Helmet optimize the processes of state management, routing, and interaction with the API. Such functions as data binding, component-based routing, project generation, form validation, or dependency injection require additional modules or libraries to be installed.
โœ”๏ธ๐‘จ๐’๐’ˆ๐’–๐’๐’‚๐’“
Angular is a full-fledged framework for software development, which usually does not require additional libraries. All the above-mentioned functions โ€“ data binding, component-based routing, project generation, form validation, and dependency injection โ€“ can be implemented with the means of the Angular package.

๐Ÿ’Ž You can find more about ๐‘๐ž๐š๐œ๐ญ ๐Ÿ†š ๐€๐ง๐ ๐ฎ๐ฅ๐š๐ซ in the picture below.
Alt Text

๐Ÿ’– ๐Ÿ’ช ๐Ÿ™… ๐Ÿšฉ
mehdikhalfallah
Mehdi Khalfallah

Posted on September 15, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

ยฉ TheLazy.dev

About