React

React (React.js, ReactJS) is a JavaScript framework for building user interfaces in web applications.

React basically makes it easy to create an interface application by being able to break the application down into many smaller components that have own independent states.

In addition, it is extremely efficient thanks to the use of a virtual Document (actually DOM - Document Object Model). When changing state, it looks for differences between the original and the virtual DOM and then apply the changes.

liviere.studio