• Stars
    star
    11,615
  • Rank 2,761 (Top 0.06 %)
  • Language
  • Created over 8 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Your guide to the (sometimes overwhelming!) React ecosystem.

react-howto

If you’re new to React (or frontend in general) you may find the ecosystem confusing. There are a few reasons for this.

  • React has historically been targeted at early-adopters and experts
  • Facebook only open-sources what it actually uses, so it doesn’t focus on tooling for smaller-than-Facebook projects
  • There’s a lot of bad marketing masquerading as React guides

Throughout this document, I’ll assume you’ve built a web page with HTML, CSS and JavaScript.

Why should you listen to me?

There’s a ton of conflicting advice about React out there; why listen to me?

I was one of the original members of the Facebook team that built and open-sourced React. I’m no longer at Facebook and I’m now at a small startup, so I have a non-Facebook perspective as well.

How to tackle the React ecosystem

All software is built on a stack of technologies, and you need to understand enough of that stack to build your app. The reason why the React ecosystem of tooling seems overwhelming is because it’s always explained in the wrong order.

You should learn, in this order, without skipping ahead or learning concurrently:

You don't need to learn all of these to be productive with React. Only move to the next step if you have a problem that needs to be solved.

Additionally, there are a few topics that are often mentioned in the React community that are "bleeding edge". The topics below are interesting, but they're difficult to understand, are far less popular than the above topics and aren't required for most apps.

Learning React itself

It’s a common misconception that you need to waste a lot of time setting up tooling to start to learn React. In the official documentation you’ll find a copy-paste HTML template that you can save in an .html file and get started right away. No tooling is required for this step, and don’t start learning extra tooling until you’re comfortable with React basics.

I still think the easiest way to learn React is the official tutorial.

Learning npm

npm is the Node.js package manager and is the most popular way front-end engineers and designers share JavaScript code. It includes a module system called CommonJS and lets you install command-line tools written in JavaScript. Read this post for background on why CommonJS is necessary for browsers, or the CommonJS Spec Wiki for more on the CommonJS API.

Most reusable components, libraries and tools in the React ecosystem are available as CommonJS modules and are installed with npm.

Learning JavaScript bundlers

For a number of good technical reasons CommonJS modules (i.e. everything in npm) cannot be used natively in the browser. You need a JavaScript “bundler” to “bundle” these modules into .js files that you can include in your web page with a <script> tag.

Examples of JavaScript bundlers include webpack and browserify. Both are good choices, but I prefer webpack since it has a lot of features that make development of large apps easier. Since its documentation can be confusing, I have a plug-and-play template for getting started and I wrote a how-to guide for webpack for more complex use cases.

React also now offers an officially supported CLI tool called Create React App. It lets you create React projects powered by webpack without any configuration. It has its limitations, but it can serve as a great starting point, and its updates will add more features over time. It also offers an "ejection" feature that copies all configs and dependencies into your project so you have full control over them.

One thing to keep in mind: CommonJS uses the require() function to import modules, so a lot of people get confused and think that it has something to do with a project called require.js. For a number of technical reasons, I would suggest that you avoid require.js. It’s also not very popular in the React ecosystem.

Learning ES6

Outside of JSX (which you learned in the React tutorial), you may see some funny syntax in React examples. This is called ES6, and it’s the latest version of JavaScript so you may not have learned it yet. Since it’s so new, it’s not supported in browsers yet, but your bundler can translate it for you with the proper configuration.

If you just want to get things done with React, you can skip learning ES6, or try to pick it up along the way.

You may see some talk about ES6 classes being the preferred way to create React components. This is untrue. Most people (including Facebook) are using React.createClass().

Learning routing

“Single-page applications” are all the rage these days. These are web pages that load once, and when the user clicks on a link or a button, JavaScript running on the page updates the address bar, but the web page is not refreshed. Management of the address bar is done by something called a router.

The most popular router in the React ecosystem is react-router. If you’re building a single-page application, use it unless you have a good reason not to.

Don’t use a router if you aren’t building a single-page application. Most projects start out as smaller components inside of a larger application anyway.

Learning Flux

You’ve probably heard of Flux. There’s a ton of misinformation about Flux out there.

A lot of people sit down to build an app and want to define their data model, and they think they need to use Flux to do it. This is the wrong way to adopt Flux. Flux should only be added once many components have already been built.

React components are arranged in a hierarchy. Most of the time, your data model also follows a hierarchy. In these situations Flux doesn’t buy you much. Sometimes, however, your data model is not hierarchical. When your React components start to receive props that feel extraneous, or you have a small number of components starting to get very complex, then you might want to look into Flux.

You’ll know when you need Flux. If you aren’t sure if you need it, you don’t need it.

If you have decided to use Flux, the most popular and well-documented Flux library is Redux. There are a lot of alternatives out there, and you’ll be tempted to evaluate lots of them, but my advice is to just stick with the most popular one.

Learning inline styles

Pre-React, a lot of people reused CSS styles with complicated style sheets built by preprocessors like SASS. Since React makes writing reusable components easy, your stylesheets can be less complicated. Many in the community (including myself) are experimenting with getting rid of stylesheets altogether.

This is a fairly crazy idea for a number of reasons. It makes media queries more difficult, and it's possible that there are performance limitations using this technique. When starting out with React, just style things the way you normally would.

Once you've got a feel for how React works, you can look at alternate techniques. One popular one is BEM. I recommend phasing out your CSS preprocessor, since React gives you a more powerful way to reuse styles (by reusing components) and your JavaScript bundler can generate more efficient stylesheets for you (I gave a talk about this at OSCON). With that said, React, like any other JavaScript library, will work just fine with a CSS preprocessor.

Alternatively, you can also use CSS Modules, more specifically react-css-modules. With CSS Modules you'll still write CSS (or SASS/LESS/Stylus), but you can manage and compose your CSS files like you'd do with inline styles in React. And you don't need to worry about managing your class names using methodologies like BEM, as this will be handled for you under the hood by the module system.

Learning server rendering

Server rendering is often called "universal" or "isomorphic" JS. It means that you can take your React components and render them to static HTML on the server. This improves initial startup performance because the user does not need to wait for JS to download in order to see the initial UI, and React can re-use the server-rendered HTML so it doesn't need to generate it client-side.

You need server rendering if you notice that your initial render is too slow or if you want to improve your search engine ranking. While it's true that Google now indexes client-rendered content, as of January 2016 every time it's been measured it's been shown to negatively affect ranking, potentially because of the performance penalty of client-side rendering.

Server rendering still requires a lot of tooling to get right. Since it transparently supports React components written without server rendering in mind, you should build your app first and worry about server rendering later. You won't need to rewrite all of your components to support it.

Learning Immutable.js

Immutable.js provides a set of data structures that can help to solve certain performance issues when building React apps. It's a great library, and you'll probably use it a lot in your apps moving forward, but it's completely unnecessary until you have an appreciation of the performance implications.

Learning Relay, Falcor etc

These are technologies that help you reduce the number of AJAX requests. They’re still very cutting-edge, so if you don’t have a problem with too many AJAX requests, you don’t need Relay or Falcor.

More Repositories

1

webpack-howto

JavaScript
10,126
star
2

rwb

JavaScript
727
star
3

react-webpack-template

JavaScript
551
star
4

react-boilerplate

Boilerplate for creating a React npm package
JavaScript
545
star
5

react-touch

React photo viewer for mobile
JavaScript
446
star
6

ReactHack

React+Parse+Bootstrap Hackathon toolkit
JavaScript
249
star
7

react-server-rendering-example

Super-basic example of how server rendering works
JavaScript
221
star
8

webpack-require

JavaScript
198
star
9

react-one-hour-email

Build a very simple email client in an hour, step by step.
JavaScript
174
star
10

node-jsx

transparently require() jsx from within node
JavaScript
165
star
11

react-gss

JavaScript
155
star
12

langchain-github-bot

Python
144
star
13

react-raf-batching

A game-like batching strategy for React
JavaScript
134
star
14

loris

High-performance JavaScript UIs
JavaScript
133
star
15

react-tutorial

Code from the React tutorial
JavaScript
124
star
16

jsx-loader

JSX loader for webpack
JavaScript
108
star
17

famous-react

JavaScript
78
star
18

react-browserify-template

Quick template for building with Browserify + React
HTML
67
star
19

dagster-poor-mans-data-lake

Python
66
star
20

react-touch-lib

React component library for building inertial touch applications.
JavaScript
63
star
21

yologram

JavaScript
42
star
22

react-multiplayer

Multiplayer React with Firebase
JavaScript
40
star
23

morimodel

Models for Mori
JavaScript
38
star
24

react-xhr

JavaScript
37
star
25

react-tween

JavaScript
29
star
26

react-meteor-preso

JavaScript
26
star
27

react-classset

React.addons.classSet() packaged in npm
JavaScript
22
star
28

react-jqueryui

Wrap jQuery UI widgets in React components
JavaScript
22
star
29

django-reactify

Python
21
star
30

generator-react-library

Yeoman generator for React components
JavaScript
17
star
31

use-state-singleton

yet another redux alternative
TypeScript
15
star
32

dagster-github-stars-example

Python
15
star
33

rust-benchmark

JavaScript
14
star
34

js-css-loader

Define CSS in JS
JavaScript
13
star
35

commonjs-asset-spec

12
star
36

lockless

STM for Python
Python
11
star
37

ratelimiter

The easiest way to add rate limiting to your app
JavaScript
11
star
38

react-googlemaps

A declarative React interface to Google Maps
JavaScript
10
star
39

reactify-server-rendering

JavaScript
9
star
40

staticify

Browserify all of your static resources
JavaScript
9
star
41

jsxc

experimental jsx command-line tool
JavaScript
9
star
42

unrouter

JavaScript
8
star
43

zod-args

zod-args is the fastest way to throw together a simple CLI with TypeScript type checking.
JavaScript
8
star
44

sweetjs-loader

webpack loader for sweet.js
JavaScript
8
star
45

reacthack-core

JavaScript
8
star
46

dagster-script-to-assets

Python
6
star
47

sqlconfig

Python
4
star
48

oredev-workshop

JavaScript
4
star
49

rerequire

JavaScript
4
star
50

statics

static assets in npm
JavaScript
4
star
51

zod-json-rpc

TypeScript
4
star
52

generator-react-quickstart

Yeoman generator for React apps and libraries
JavaScript
3
star
53

sharable-components-prototype

JavaScript
3
star
54

react-ember-demo

JavaScript
3
star
55

react-main

JavaScript
3
star
56

ts-json-rpc

TypeScript
3
star
57

stylesheets

Client/server stylesheet management
JavaScript
3
star
58

reactify-server-rendering-tools

JavaScript
3
star
59

react-freezer

JavaScript
3
star
60

omgnosql

OMG! NoSQL!!!
Python
2
star
61

reactbars

DONT EVEN THINK ABOUT IT
JavaScript
2
star
62

dslpy

Domain specific languages embedded in Python
Python
2
star
63

jsxnode

JavaScript
2
star
64

react-graph

immutable client-side graph abstraction with great react integration. fulfills similar use cases to backbone.model
JavaScript
2
star
65

dagster-ml-example

Python
2
star
66

meteor-leaderboard-react

Meteor leaderboard example using React
JavaScript
2
star
67

objectid

Python
2
star
68

reactpad

JavaScript
2
star
69

htmldry

Don't Repeat your HTML
JavaScript
2
star
70

react-meteor

Meteor bindings for React, packaged for npm
JavaScript
2
star
71

browserify-bundler

JavaScript
1
star
72

dagster-data-sources

1
star
73

jsbs

JavaScript boot strap, or JavaScript bullshit, depending on what you prefer
JavaScript
1
star
74

jsonrpc2.0-cli

JavaScript
1
star
75

sketchpad

Python
1
star
76

odsc-talk

Python
1
star
77

inboxfeed

JavaScript
1
star
78

browserify-transform-server-side

JavaScript
1
star
79

ts-json-rpc-client

TypeScript
1
star
80

statics-stylesheets

JavaScript
1
star
81

rx-spinner

A simple reusable spinner component example
JavaScript
1
star
82

react-profiler

A simpler interface to ReactDefaultPerf
JavaScript
1
star
83

react-core

JavaScript
1
star
84

text-to-pydantic

Python
1
star
85

dagster-gitpod

Python
1
star
86

reactify

Browserify v2 transform for text/jsx (superset of JavaScript used in React library by Facebook)
JavaScript
1
star
87

nupic

C++
1
star