The JavaScript community is going full speed on innovation, what was once trendy becomes old-fashioned a few months later.

2016 is over, you may think you missed something important? Don't worry, we are going to review what were the main trends.

Let's see by the numbers which projects got traction in 2016, by comparing the numbers of stars added on GitHub, over the last 12 months.

In 2015, React was the king and Redux won by storm the battle of flux implementations. Who are the 2016 JavaScript rising stars ?


The following graphs compare the number of stars added on GitHub over the last 12 months. We analyzed projects coming from Best of JS, a curated list of the best projects related to the web platform.

Table of Contents

  1. Most Popular Projects in 2016
    Vue.jsReactElectronReact NativeReduxBootstrapD3VS CodeNode.jsWebpack
  2. Front-end Frameworks
    Vue.jsReactAngularAngular 1Inferno
  3. Node.js Frameworks
    ExpressKoaFeathersKeystoneSails
  4. React Ecosystem
    Create React AppMaterial UIReact RouterReact boilerplateReact Starter Kit
  5. Mobile
    React NativeIonicNativeScript
  6. Compilers
    TypeScriptBabelReasonCoffeeScriptClojureScript
  7. Build Tools
    WebpackGulpRollupBrowserifyGrunt
  8. Testing Frameworks
    AVAJestMochaJasmineTape
  9. IDE
    VS CodeAtomBracketsDeco IDE
  10. Static Sites
    HexoGatsbyMetalsmith
  11. Conclusion

Most Popular Projects in 2016

1
Vue.js

Vue.js

🖖 A progressive, incrementally-adoptable JavaScript framework for building UI on the web.
+26.4k☆

Trends in 2016

1.6k
948
1.3k
2.0k
2.0k
1.7k
2.1k
2.2k
2.7k
3.7k
3.2k
3.0k
J
F
M
A
M
J
J
A
S
O
N
D

GitHub data

Created
2013-07
Total stars
79.3k☆

Links

GitHub
vuejs/vue
Homepage
vuejs.org
Best of JS
bestofjs.org/projects/vuejs
2
React

React

A declarative, efficient, and flexible JavaScript library for building user interfaces.
+22.9k☆
3
Electron

Electron

Build cross platform desktop apps with JavaScript, HTML, and CSS
+18.2k☆
4
React Native

React Native

A framework for building native apps with React.
+17.5k☆
5
Redux

Redux

Predictable state container for JavaScript apps
+15.2k☆

Overview

By checking the 10 hottest projects of the year, you can get a good overview of what was the web development landscape in 2016, since you will find:

  • 3 UI frameworks: Vue.js, React and Angular
  • A new node.js package manager: yarn
  • The leading solution to build desktop applications: Electron
  • A solution to quicky start a new React project Create React App
  • A mobile framework: React Native
  • The most famous CSS toolkit: Bootstrap
  • A state management library based on functional concepts: Redux
  • A powerful and flexible chart library: D3

It tells a lot about JavaScript ubiquity and versatility in 2016.

And the 2016 winner is... 🏆

Vue.js project got more than 25,000 stars on GitHub last year, it means 72 stars per day, it's more than what any other framework got, including React and Angular.

The version 2, that takes advantage of the Virtual DOM for performance, was released in October.

Vue.js is used in production by big companies (including Alibaba, the biggest e-commerce company in China), so you can consider it as a safe choice.

There is already a quite mature eco-system around it, including a router (vue-router) and a state management library (vuex).

It seems that Vue.js took the best of React (the component approach) and Angular 1 (templates are html code enhanced by the framework features).

Front-end Frameworks

1
Vue.js

Vue.js

🖖 A progressive, incrementally-adoptable JavaScript framework for building UI on the web.
+26.4k☆
2
React

React

A declarative, efficient, and flexible JavaScript library for building user interfaces.
+22.9k☆
3
Angular

Angular

One framework. Mobile & desktop.
+10.4k☆
4
Angular 1

Angular 1

AngularJS - HTML enhanced for web apps!
+8.5k☆
5
Inferno

Inferno

An extremely fast, React-like JavaScript library for building modern user interfaces
+6.9k☆

This Front-end Frameworks category is maybe the one that is responsible for what was called the JavaScript fatigue in 2016. It seemed that every month a new contender made the buzz, pushing the pace of innovation!

To be exact, 2 kinds of projects are mixed in the category:

  • Full frameworks that include all features to create a modern web application (routing, data fetching, state management). Angular 1, Angular, Ember or Aurelia fall in this category.
  • Lighter solutions that focus on the UI layer, like React, Vue.js, Inferno...

We have already mentioned Vue.js (number 1 overall), let's see the other contenders.

React and its contenders

React is number 2, no front-end developer can ignore React and its rich eco-system.

React is so popular that it inspired a lot of other libraries that aim to take the best of React, without the fat, in order to improve both performance in the browser and building time.

Inferno was the most popular project in this category, it claims to be the fastest alternative to React.

Following closely Inferno in our rankings, Preact is a nice alternative to React too. Its eco-system is quite mature, for example there is a boilerplate with offline capabilities, a router, a compat module so that you can use any existing React library inside your Preact project.

Angular 1 and 2

Angular project has been split into 2 repositories because Angular 2 is a full rewrite of Angular 1, even if some concepts remain the same.

Angular is written in TypeScript and takes advantage of ES6 to deliver a modern and thorough framework.

Angular 1 (called "AngularJS" on GitHub) is still used in many projects and will remain popular for a while.

It's worth to mention that Ember, despite its large eco-system and its community is not in the top 10.

So it seems that, rather than opting for full frameworks with all features "out of the box", developers in 2016 flavored lighter approaches and prefer to compose their own solution "à la carte".

Node.js Frameworks

1
Express

Express

Fast, unopinionated, minimalist web framework for node.
+6.9k☆
2
Koa

Koa

Expressive middleware for node.js using ES2017 async functions
+5.0k☆
3
Feathers

Feathers

A REST and realtime API layer for modern applications.
+4.1k☆
4
Keystone

Keystone

node.js cms and web app framework
+3.6k☆
5
Sails

Sails

Realtime MVC Framework for Node.js
+3.2k☆

In 2016 it has never been easier to create and deploy a node.js application with solutions like:

Projects like Glitch (previously called Gomix) even lowered the barrier to the node.js world, making easy to anyone to write and share node.js code in a few clicks, right from the browser.

So if you have to build a web application, which framework to choose?

Express

When you build a web application with node.js, Express is often considered as the de-facto web server. Its philosophy (a minimalistic core that you can extend using middleware packages) is familiar to most of node.js developers.

Koa

Koa philosophy is close to Express but it's built using ES6 generators to avoid a problem sometimes called Callback Hell.

Feathers

Feathers is a very flexible solution to create a "service oriented" architecture, it's a good fit to create node.js microservices.

Nodal

Nodal framework targets stateless and distributed services connected to PostgreSQL databases.

Keystone

Keystone is one of the best solutions I know to get an admin client up and running, in order to manage the content coming from a MongoDB database. The Admin UI is automatically generated from the models, has all CRUD actions and nice filters.

Sails

Sails is a full MVC framework, very inspired by Ruby on Rails (hence the name Sails!). It has been around for a long time. It can play with any kind of database, SQL or non-SQL.

Loopback

Loopback is another mature framework with a lot of built-in features, including authentication with token and connectors to any kind of database.

The killer feature is the API explorer that lets developers check all API end-points in an intuitive way, with the ability to check any user's token. It's definitively a good choice if you have to build an API.

React Ecosystem

1
Create React App

Create React App

Create React apps with no build configuration.
+9.5k☆
2
Material UI

Material UI

React components that implement Google's Material Design.
+9.4k☆
3
React Router

React Router

Declarative routing for React
+9.1k☆
4
React boilerplate

React boilerplate

:fire: A highly scalable, offline-first foundation with the best developer experience and a focus on
+8.9k☆
5
React Starter Kit

React Starter Kit

React Starter Kit — isomorphic web app boilerplate (Node.js, Express, GraphQL, React.js, Babel, Post
+6.3k☆

React is a great UI library but using React and the modern web development workflow tools require a lot of configuration. So how to start creating a real-world application?

It's the answer provided by the React "boilerplates" and other "starter kits"...

Create React App

Facebook addressed the need by providing a lighter approach called Create React App that is a very convenient way to start a new React project.

Dan Abramov (the creator of Redux, now working for Facebook) did a great job, finding the right balance between simplicity and features. For example there is no fancy styling solution (just plain CSS), no server-side rendering, but everything is well packaged and the developer experience is really good.

The main difference with its contenders is that if you use Create React App, it becomes a dependency of your project, all the magic is hidden and what you see is only your application code. You can upgrade the dependency at any time, it's not just a starting point.

React boilerplate

The well named React boilerplate has everything you need, including Redux and some nice offline features, taking advantage of the web workers technology.

It lets developers create what is called Progressive Web Applications (or PWA): web applications that run offline, using a technology called Service Worker, for more information you can read this article from Nicolás Bevacqua.

Next.js

Next.js, created by the busy folks from Zeit, has a server-side rendering feature that can be used to create universal applications (or isomorphic applications, as we used to say in 2015), that is to say applications that run more or less with the same code client AND server-side.

Mobile

1
React Native

React Native

A framework for building native apps with React.
+17.5k☆
2
Ionic

Ionic

Build amazing native and progressive web apps with open web technologies. One app running on everyth
+6.0k☆
3
NativeScript

NativeScript

NativeScript is an open source framework for building truly native mobile apps with JavaScript. Use
+3.7k☆

JavaScript is so ubiquitous that you can build native mobile applications using technologies web developers already know (HTML, JavaScript, CSS).

React Native

With React Native, from the same code base, you can build iOS and Android real native mobile applications, using concepts familiar to React developers. To know more about building applications for both iOS and Android, read this tutorial.

Other solutions, based on Cordova, used to rely on Webview to render the screens and were not as efficient as a native solution. "Write Once Run Everywhere"... This is a developer's dream came true!

Ionic

Ionic was a pioneer with the concept of "hybrid" applications. Under the hood, it's based on Cordova to access the mobile device features. It's very mature with a large eco-system.

NativeScript

NativeScript aims for the same goal as React Native (build real mobile applications using web technologies). It comes in 2 flavors, NativeScript Core and NativeScript + Angular 2

Looking forward...

A project to follow closely in 2017: Weex, a framework for building Mobile cross-platform UI built on top of Vue.js.

Compilers

1
TypeScript

TypeScript

TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
+9.4k☆
2
Babel

Babel

:tropical_fish: Babel is a compiler for writing next generation JavaScript.
+6.6k☆
3
Reason

Reason

Simple, fast & type safe code that leverages the JavaScript & OCaml ecosystems
+1.9k☆
4
CoffeeScript

CoffeeScript

Unfancy JavaScript
+1.2k☆
5
ClojureScript

ClojureScript

Clojure to JS compiler
+1.2k☆

We are talking here about compilers (or "transpilers") that generate JavaScript from any language (or any variation of JavaScript). They transform the code into "standard JavaScript" code that the browser (or node.js) can execute.

For example compilers let developers write code using the latest version of JavaScript (ES6) without having to worry about browser support.

TypeScript

The most trendy transpiler was TypeScript, it brings to web developers the static types used by Java and C# developers. The fact that Angular uses TypeScript added even more traction. There are pros and cons about using types in JavaScript, read these 2 article to make your own point of view:

Babel

Babel, along with Webpack, almost became a standard to compile ES6 code and templates used by libraries like React (JSX) in standard JavaScript. Initially created to compile ES6, it became a much more generic tool that can accomplish any code transformation, thanks to a system of plugins.

Flow

Flow is not a compiler, it's a static type checker used to "annotate" the JavaScript code. Basically using Flow inside a code base means adding comments to describe expected types (read more about using Flow to write modules here).

It's used inside the code source of Facebook projects. Since Facebook became one of the major actors of the open source world (with projects like React, React Native, flux, immutable, Jest...), that means a lot.

CoffeeScript

During years CoffeeScript and its lean syntax, inspired by Python and Ruby syntax, was the most popular compiler but a lot of developers moved from CoffeeScript to ES6 with Babel in 2016.

Build Tools

1
Webpack

Webpack

A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting a
+11.2k☆
2
Gulp

Gulp

The streaming build system
+6.3k☆
3
Rollup

Rollup

Next-generation ES6 module bundler
+5.2k☆
4
Browserify

Browserify

browser-side require() the node.js way
+1.7k☆
5
Grunt

Grunt

Grunt: The JavaScript Task Runner
+889☆

In 2016, it's difficult to imagine a web application without any kind of building process. You usually need a building process to compile templates and optimize assets in order to ship your web application in production.

Webpack

Webpack is the main tool used to build a single-page application, it plays well with the React eco-system. The newly released version 2 comes with some promising enhancements (check this introduction)

Gulp

Gulp is a generic a task runner that can be used for any kind of automatic process involving the file system, so it's not a direct contender of Webpack or Browserify.

Like Grunt, Gulp works by aggregation: you can ask it to minify and concatenate a list of assets but it does not deal with modular JavaScript by itself, as Webpack or Browserify do.

Nevertheless it can play well with webpack even if developers tend to use npm scripts instead.

Browserify

Browserify, because of its simplicity is usually loved by node.js developers.

Basically it takes several node.js packages as an input and generates one single "build" file for the browser as an output. But it seems that a more opinionated tool like Webpack is a a better fit to web application workflows.

Looking forward...

A module bundler to follow in 2017, that emphasizes on performance: Rollup.

It uses ES6 modules with a feature called Tree shaking to create bundles that include only functions you use in your code, instead of shipping the full library.

Loading
Loading
Loading

Conclusion

Despite the JavaScript fatigue™ and the dramas (remember the "leftpad gate"), 2016 was a great year for the community, with the rise of projects like Vue.js and React Native, and new projects like yarn or Create React App.

We have been talking about projects that got traction on GitHub in 2016 but what really matters is developer's satisfaction. So if you want a more qualitative approach, check the results from Sacha Greif’s State of JavaScript survey. More than 9,000 responses were collected!


It's time to think about 2017, where are the next rising stars?

Here are my 10 picks of the year, the projects and the ideas I liked in 2016 and that will keep up growing in 2017:

  • Vue.js: the momentum will not stop
  • Electron
  • Create React App
  • React Native
  • Gatsby (used to build this page!)
  • yarn: a fast, reliable and secure dependency management that can replace npm, you can read about the state of node.js package managers here
  • The concept of "Progressive Web Applications"
  • Node.js micro-services made easy to deploy with a hosting solution like Now
  • The evolution of Node.js: the latest releases support very well the ES6 syntax
  • And one more pick would be graphql: all my friends told me that something big is coming!

Thank you for your attention, feel free to share this article or to reach us on GitHub!

Authors

Sacha Greif

Author of Discover Meteor and creator of Vulcan, a React+GraphQL open-source framework.

Available Translations

中文

日本語