DEV Community

Cover image for A "Brief" History of the Web Part 3
Nicholas Mendez
Nicholas Mendez

Posted on

A "Brief" History of the Web Part 3

It was 2006, AJAX was being widely adopted to build dynamic web experiences. As web apps became more complex, there was a need to make building them simpler. Thus the dawn of the framework wars began.

The First Generation

I can't talk about the first frameworks/libraries without mentioning jquery of course. In this wave, libraries mainly focused providing some UI widgets, DOM manipulation, and AJAX. Dojo Toolkit appears to be the first framework ever released in 2004. jQuery was released in 2006, along with mootools and yui. However, that fact that you probably only recognized jQuery is testament to its domination.

The Second Generation

In 2009 JavaScript was updated to EcmaScript Version 5, with growing platform capabilities and user expectations a second wave of frameworks began. Frameworks likes Angular in 2009, Backbone JS in 2010, Ember and Meteor in 2011 were on the rise. Two-way data-binding and templating were the features you would typically see in these frameworks. React was released in 2013 and two promising frameworks called Vue and Polymer were released in 2014.

image
Image Credit

On the server side, an interesting development happened in 2009. Nodejs was released as the first server side runtime for JavaScript. Now you can write your sever-side scripts and your client side code in JavaScript!

The Third Generation

EcmaScript version 6 was released in 2015, this brought many quality of life improvements like arrow functions, template literals, let & const, promises and the fetch API.

In this generation much attention was paid to state management, building UI components an optimizing their rendering with concepts like virtual DOM in the case of react. In 2015 Ember had a major update and in 2016 Angular JS was 'rebooted' to Angular much to the dismay of many dev teams.

image

One may argue that the framework fatigue really began to be felt here. Many developers were overwhelmed at the amount of diversity and the of fear having to learn a new framework ever so often was real.

In 2016, interest in React surpassed Angular and Vue's popularity saw steady growth. Popularity in Aurelia was also on the rise. By 2017 Angular took a clear 3rd place behind Vue and React at the top.

Conclusion

While there were still new frameworks appearing, many took solace in how things seem to have settled down at the top. In the next post we shall catch up to the web today.

Have you been in dev during these years? Perhaps you have been burned by the Angular Upgrade? Did you use Redux with React? Please share!

References

Top comments (0)