Code Monkey home page Code Monkey logo

react-lego's Introduction

React Lego CircleCI

The building blocks of a react app

This repo demonstrates how to plug in other technologies, one block at a time, into React.

Hear me out!

The concept is to use GitHub's branch-comparison screens to quickly demo the code changes that are needed for only the technology you are interested in.

A client-side React app which is fully tested and production ready on the master branch.
From Master, universal was created which added Server-side Rendering (SSR) via Express.
Every other branch then adds one more technology, with the smallest possible changes.

All branches, have been setup with continuous deployment.

>> More about the concept

All branches use babel v6, es2015, React v15.1, React-router v1, Webpack v1 unless otherwise stated

Technology to Compare:

Each tech has its own branch, and in my experience, can be mixed and matched almost seamlessly!

Client-side

The client-side apps are production ready and fully tested, they both use the following :

All other branches include the above and are also production ready.

React

master branch

The react app uses react-router v2 for routing.

Preact

Compare Preact with React

Because of Ben Fletcher and this tweet I thought i'd give Preact a shot.

Turns out it was actually very easy! After removing a few dependencies we swapped routers for preact-router.

>> More about adding Preact

Server-side Rendering (SSR)

Koa

Add Koa to React

Using Koa, the App now renders on the server, Compare Koa with Express.

Koa Branches:

I simply rebased and rebased and rebased some more :) Oh, I did swap in koa's hot middleware, but that was it. And it works, bonus.

Express

Add Express to React

Using Express, the App now renders on the server, Compare Express with Koa.

Express Branches:

Build Tools

Webpack v2

This was added out of pure interest and I haven't used it in anger yet. Take a look at the comparison branch to see how to upgrade from webpack v1 to v2.

Other Webpack v2 Branches:

Hot-Reloading

React-hot-loader v3

react-hot-loader allows you to see changes made to any part of your app without having to restart the server. We are currently using v3.

>> More about adding react-hot-loader

RHLv3 Branches

Routing

React-Router v4

React Router v4 sees to be very close to being released so I was interested in how hard the upgrade would be. Easy, it seems - the new syntax includes a lot for JSX which is friendly and more flexible.

>> More about React-Router v4

React-router v4 Branches

State-Management

Redux

Based on the universal branch. _compare branches

Redux was added with data being hydrated on the server.

The app now has an API which can be called to return the required data. This data is now formatted inside a reducer.

>> More about adding Redux

Redux with Promise middleware

Based on the redux branch. compare branches

This branch allows you to make async requests on the server and hydrate your redux store before rendering the page. The massive win here is that each container dictates what data it needs while still on the server.

>> More about adding Promise middleware

Redux Dev Tools

Based on the redux branch. compare branches

Add Redux-DevTools to the app to help debugging.

>> More about adding redux-dev-tools

Importing Assets

In the base branches, we have simply added the CSS into webpack entry array to get it to convert Scss into CSS. these are some other ways to achieve more modular components:

>> More about the different CSS methods

SVGs

Based on the universal branch. compare branches

Using webpack-isomorphic-tools and svg-inline-loader we are able to directly import SVGs into our JavaScript. This has the added benefit of :

  • Reusing SVG files (without code duplication)
  • Keep SVGs inline and style them with CSS
  • Serverside rendering of SVG's

>> More about importing SVGs

CSS Imports

Based on the universal branch compare branches

Import your css into your component and use the class names as they are written.
This method is the least obtrusive and feels most like traditional css. You must manually take care of css scope using things like BEM or Smaccs.

CSS Modules

Based on the universal branch compare branches

Import your css into your components and add the class names using js object notation. This method completely changes the css class names output. Scoping problems are gone, but you must specifically mark 'global' classes.

CSS in JS

Based on the universal branch compare branches

import your css into your components as Javascript Objects.
Class names are a thing of the past as are scoping problems.

react-lego's People

Contributors

peter-mouland avatar

Watchers

Rico Moorman avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.