Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 2.5 KB

javascript.md

File metadata and controls

56 lines (40 loc) · 2.5 KB

JavaScript Resources

A collection of resources for the JavaScript programming language.

General JavaScript

ReactJS

Official documentation

Getting started

Thoughts from @joshmock on Redux/Flux:

The thing that I think helps explain it to others, personally, is that React and Flux are two sides of a coin: Flux stores all your state, React represents it on the page. Redux's implementation of Flux basically mirrors how React works: React uses cascading components to display and act on state in the DOM; Redux uses cascading functions to store and update state through basic data structures. It's just two trees. One in the DOM, one in a series of composed functions.

Advanced

Redux

Promises

D3