What is the advantage of front-end frameworks like react?

7

I was talking to some friends and in the conversation they told me that frameworks like react would be mandatory for front end programming today.

I wanted to know your opinion on this, why use a front end language and if you do not use it you will be excluded from the market.

In addition, what are the advantages of using a front end framework and why we should use it.

    
asked by anonymous 06.10.2017 / 21:04

1 answer

5

A front end framework brings together various features and facilitates much of your work. Using a framework you will find many facilities like:

  • Reusing code
  • More Speed in Development
  • Easier to find solutions
  • More optimized functions (The frameworks have a team of specialists working on the frequent improvement of the methods)
  • Reducing errors (Because the functions have already been tested by several other devs)
  • Abstraction of the solution, you will be more concerned with why, than with how to do it.

I think these advantages are already a good reason to use frameworks. As a professional I believe that the mastery of a framework generates prominence in the market. Your friends are right, there are no systems made today without the help of some framework.

    
06.10.2017 / 21:24