Skip to content

Instantly share code, notes, and snippets.

@samsch
Last active April 4, 2016 13:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samsch/fb4f31aa34f72cbcd74f to your computer and use it in GitHub Desktop.
Save samsch/fb4f31aa34f72cbcd74f to your computer and use it in GitHub Desktop.
Reactjs, Redux, Webpack/Browserify, Babel Resources.

Before trying to learn React or Redux, or use Webpack/Browserify or Babel, you should make sure you know Javascript at least reasonably well. A great resource learning Javascript is EloquentJS. If you have never programmed before, another great place to learn JS is Codecademy. The best resource for referencing the basic web languages (HTML, CSS, Javascript, and the DOM API) is the Mozilla Developer Network, commonly referred to as MDN.

Basic setup

React

Tips

  • The best way to use React is to stick (almost) exclusively to passing down props (for state and callbacks), and ignoring component state. You should almost always be able to use stateless function components.

Getting help

Google and the React docs should be your first place to go for React help. If you can't find your answer there, check out the #reactjs IRC channel on Freenode, or the Reactiflux Discord channel.

Redux

Redux is a flux-like application state store. Redux (and indeed, any framework or flux implementation) is not needed to build good Javascript applications. That said, if you want a set structure for how to build you app (a framework), Redux is a good choice. Another popular choice is Alt, which is supposed to have very good docs for learning Flux.

Most Redux docs and tutorials assume you know some of the most commonly used ES2015 syntax; notably arrow functions, destructuring, and import syntax. One thing that many are getting wrong is using import syntax, and having Babel compile it to CommonJS. Do not use ES2015 import syntax. It's behavior is currently undefined!. You can see where it's at here. Instead, use CommonJS directly.

Basics

  1. The best way to get started with the Redux docs is to read (and code along with) section 1 through 1.3, skip 1.4 and 1.5 for now, and then go through sections 2 and 3.
  2. Section 2.5 requires you have a bit of an idea how React components work, specifically stateless function components, combined with arrow functions and destructuring.
  3. Once you have gone through these basics, and gotten a small test app to work, try using what you know now to build a small app. Don't worry about "best practice" yet. Much of the best practice subjects don't make much sense until you actually try to do the things which it protects against.
  4. Once you have built some small app with what you know, you might jump into the intermediate links below.

Intermediate guides

Next steps

Individual systems

Getting help

Google and the Redux docs should be your first place to go for Redux help. If you can't find your answer there, check out the #reactjs IRC channel on Freenode (there isn't an active, Redux specific channel), or the Reactiflux Discord Redux channel.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment