Top JavaScript Frameworks & Topics to Learn in 2017

Progressive Web Applications (PWAs): See “Native Apps are Doomed” & “Why Native Apps Really Are Doomed”
Node & Express : Node lets you use JavaScript on the server, meaning your users can store data in the cloud and access it anywhere. Express is the most popular framework for Node by a landslide.
Lodash : A great, modular utility belt for JavaScript, packed with functional programming goodies. Import the data-last functional modules from lodash/fp .
Tooling
Chrome Dev Tools : DOM inspect & JS debugger : The best debugger, IMO, though Firefox has some really cool tools you might want to check out, too.
npm : The standard open-source package repository for the JavaScript language.
git & GitHub : Distributed version manager — keeps track of your source code changes over time.
Babel : Used to compile ES6 to work on older browsers.
Webpack : The most popular bundler for standard JavaScript look for simple starter kit/boilerplate config examples to get things running fast)
Atom , VSCode , or WebStorm + vim : You’re gonna need an editor. Atom and VSCode are the most popular JS editors today. Webstorm is another solution with very robust support for quality tooling. I recommend learning vim, or at least bookmarking the cheat sheet because sooner or later, you’re gonna need to edit a file on a server, and it’s the easiest way — vim comes installed on just about every flavor of Unix compatible OS, and works great over SSH terminal connections.
ESLint: Catch syntax errors and style issues early. After code review and TDD, the third best thing you can do to reduce bugs in your code.
Tern.js: Type inference tools for standard JavaScript, and currently my favorite type related tool for JavaScript — no compile step or annotations required. I’ve kicked all the tires, and Tern.js delivers most of the benefits, and virtually none of the costs of using a static type system for JS.
Yarn *: Similar to npm, but install behavior is deterministic, and Yarn aims to be faster than npm.
TypeScript*: Static types for JavaScript. Completely optional unless you’re learning Angular 2+. If you’re not using Angular 2+, you should evaluate carefully before choosing TypeScript. I like it a lot and I admire the TypeScript team’s excellent work, but there are tradeoffs you need to know about. Required reading: “The Shocking Secret About Static Types” & “You Might Not Need TypeScript” .
Flow*: Static type checker for JavaScript. See “TypeScript vs Flow” for an impressively informed and objective comparison of the two. Note that I’ve had some difficulty getting Flow to give me good IDE feedback, even using Nuclide .
React
React is a JavaScript library for building user interfaces, created by Facebook. It’s based on the idea of uni-directional data flow, meaning that for each update cycle:
React takes inputs to components as props and conditionally renders DOM updates if data has changed for specific parts of the DOM. Data updates during this phase can’t retrigger the render until the next drawing phase.
Event handling phase — after the DOM has rendered, React automatically delegates DOM events to a single event listener at the root of its DOM tree (for better performance). You can listen for events and update data in response.
Using any changes to the data, the process repeats at 1.
This is in contrast to 2-way data binding, where changes to the DOM may directly update data (e.g., as is the case with Angular 1 and Knockout). With 2-way binding, changes to the DOM during the DOM render process (called the digest cycle in Angular 1) can potentially retrigger the drawing phase before the drawing is finished, causing reflows and repaints — slowing performance.
React does not prescribe a data management system, but a Flux-based approach is recommended. React’s 1-way data flow approach borrowing ideas from functional programming and immutable data structures transformed the way we think about front-end framework architecture.
create-react-app*: The quickest way to get started with React.
react-router*: Dead simple routing for React.
Next.js*: Dead simple Universal render & Routing for Node & React.
velocity-react*: Animations for React — allows you to use the VMD bookmarklet for interactive visual motion design on your pages.
Redux
Redux provides transactional, deterministic state management for your apps. In Redux, we iterate over a stream of action objects to reduce to the current application state. To learn why that’s important, read “10 Tips for Better Redux Architecture.” To get started with Redux, check out the excellent courses by the creator of Redux, Dan Abramov :
“Building React Applications with Idiomatic Redux”
Redux is mandatory learning, even if you never use Redux for a production project.
Why? Because it will give you lots of practice and teach you the value of using pure functions and teach you new ways to think about reducers , which are general-purpose functions for iterating over collections of data and extracting some value from them. Reducers are so generally useful that Array.prototype.reduce was added to the JS specification.
Reducers are important for more than just arrays, and learning new ways of working with Reducers is valuable all by itself.
redux-saga*: A synchronous-style side-effect library for Redux. Use this to manage I/O (such as handling network requests).
Angular 2+*
Angular 2 + is the successor to the wildly popular Angular framework from Google. Because of it’s crazy popularity, it’s going to look great on your resume — but I recommend learning React first.
I have a preference for React over Angular 2 + because:
It’s simpler, and
It’s extremely popular and used in lots of jobs (so is Angular 2+)
For this reason, I recommend learning React, but I consider Angular 2+ strictly optional* . If you have a strong preference for Angular 2+, feel free to swap them. Learn Angular 2+ first, and consider React optional. Either will benefit you and look great on your resume.
Whichever you choose, try to focus on it for at least 6 months — 1 year before running off to learn the other one. It takes time to really sink into strong proficiency.
RxJS*
RxJS is a collection of reactive programming utilities for JavaScript. Think of it as Lodash for streams. Reactive programming has officially arrived on the JavaScript scene. The ECMAScript Observables proposal is a stage-1 draft, and RxJS 5+ is the canonical standard implementation.
As much as I love RxJS, if you just import the whole thing all at once, it can really bloat your bundle sizes (there are lots of operators). To combat bundle bloat, don’t import the whole thing. Use the patch imports, instead:
Using patch imports can reduce the size of your rxjs dependencies in your bundle by ~200k. That’s a really big deal. It will make your app much faster .
EDIT: Why Didn’t You List ?
Several people have asked why I didn’t list their favorite framework. One of the important criteria I considered was “will this be useful on a real job?”.
Yes, this is a popularity contest, but the opportunities that knowing a framework will open up is an important consideration when you’re deciding where to focus your learning investment.
To answer that question, I looked at some key indicators. First, Google Trends. If you want to reproduce this Google Trends graph, remember to select by topic, not keyword, since several of these words will deliver lots of false positives. In other words, these are topic-focused trends, not keyword searches:
JS Topics on Google Trends
What this tells us is relative interest in various projects. If people are searching for them, chances are they’re exploring their options, or searching for help or documentation. This is a pretty decent indicator of relative usage levels.
Another good source of data is Indeed.com, which aggregates job listing data from a large variety of sources. Job posting popularity has declined sharply in recent years, but they still collect enough data to make good relative comparisons that tell you frameworks that people are actually using in production projects, on the job:
To reproduce those findings, search for javascript and leave the location blank. As you can clearly see:
Angular and React dominate: Nothing else even comes close. (Except jQuery, which is used on a huge share of all websites — non-apps included — because it’s used by almost all legacy systems, including popular CMS systems like WordPress).
You might see that Angular has a significant advantage over React in these listings. Why do I recommend learning React first? Because:
React significantly leads Angular in user satisfaction
In other words, React is winning the mindshare and customer satisfaction battles, and if the trends over the past year and a half continue to unfold, React has a very real chance of unseating Angular as the dominant front-end framework.
Angular 2+ has a chance to turn that around, so Angular could make a comeback, but so far, React is putting up a really good fight.
Frameworks to Watch
Vue.js * has a ton of GitHub stars and downloads. If things continue the way they are going, it will do very well in 2017, but I don’t think it will unseat either React or Angular (both of which are also growing fast) in the next year or so. Learn this after you have learned React or Angular.
MobX * is a great data management library which has become a popular alternative to Redux. It is also growing fast, and I expect it will also do well in 2017. I prefer Redux for most apps, but there are definitely cases where MobX is a better choice. For example, if you have hundreds of thousands of dynamic DOM objects on a page, it will probably perform better. Also, if your app workflows are all simple and you don’t need transactional, deterministic state, you probably don’t need Redux. MobX is definitely a simpler solution. Learn this after you have learned Redux.
Level Up Your Skills with Live 1:1 Mentorship
DevAnywhere is the fastest way to level up to advanced JavaScript skills:
Live lessons