Coder Social home page Coder Social logo

iq-scm / universal-react-demo Goto Github PK

View Code? Open in Web Editor NEW

This project forked from 5tefan/universal-react-demo

0.0 0.0 0.0 1.53 MB

ES6 demo of a simple but scalable React app with react-router, code splitting, server side rendering, and tree shaking.

License: MIT License

JavaScript 88.83% CSS 8.31% HTML 2.86%

universal-react-demo's Introduction

Universal-react-demo

This is the example application I wish I had when I started writing React.

I've found that many template/demo/starters give you too much. It's hard to start when there's lots of moving pieces. I've tried to err on the side of giving you a minimal skeleton instead of a feature rich boilerplate.

You should be able to understand every piece of this demo, and doing so will give you a strong foundation on which to start building larger apps. I believe this is a better approach than starting with a monsterous boilerplate where you're left with either feature bloat or to take things out before you even know what they do.

Features:

Up and running

Getting started

Clone the repo, then run npm install to install the dependencies listed in package.json.

Development view

To start the development server on http://localhost:8000 to preview the application, execute npm run dev.

This runs webpack-dev-server --hot which will serve the bundle and update the bundle on file changes.

Note: webpack-dev-server does not watch the webpack config file for changes.

webpack-dev-server

Build the client bundle

Run npm run build:client to bundle all assets into a build/ dir. This step must be done before server side rendering is possible.

Since all our assets are in jsx, and es6, we have to transpile them to regular Javascript for today's browsers to understand. This is where webpack works it's wonders, including static analysis to determine unused pieces of code that don't need to be included. This is called tree-shaking and can dramatically reduce the size of the resulting code you need to send to a user.

Server side rendering bundle

The file server.js implements server side rendering. It uses ES6+JSX syntax, so again, we need to convert it to regular Javascript for Node to execute.

Run npm run build:server to do this. Webpack will bundle it into ./build/server.js.

Now, you can run node build/server.js to view the server side rendered version of your application at http://localhost:8000.

A shortcut to build both the client and server, and then run the server is: npm run start:prod.

To really see what server side rendering is up to, try loading the page with Javascript disabled. You'll still get the full experience. This is amazing!!

Webpack

Webpack is a bundler. It does a lot, but at the core, it looks for import and require statements and processes them into assets for the browser. We are using Webpack 2.0 which supports tree-shaking, which eliminates code that is never used, resulting in smaller bundles.

Loaders

You'll notice in the code, we have things like

import styles from './App.scss';

Why are we importing scss into a jsx file?!

Because we want to apply the styles inside App.scss to the component in our current file. Webpack handles the internals of processing the scss file into css, and giving you an object with keys that refer to string names of the styles you set.

In the Webpack configuration file webpack.client.config.js, we specify

{
    test: /\.scss$/,
    loader: 'style-loader!css-loader?modules&loacalIdentName=[name]--[local]--[hash:base64:5]!sass-loader'
}

This tells Webpack to process assets ending in .scss using first

  1. sass-loader which converts scss to css, then pipe it through:
  2. css-loader which does some namespacing and other stuff(read their README :),
  3. Finally through style-loader

Adds CSS to the DOM by injecting a <style> tag

The other loader, testing for jsx, is responsible for transpiling ES6 and JSX to ES5 (native browser Javascript).

Plugins

We're using a couple of plugins for convenience.

HtmlWebpackPlugin

The plugin will generate an HTML5 file for you that includes all your webpack bundles in the body using script tags.

From html-webpack-plugin

Using this plugin, we don't have to worry about our entry points and making sure the index.html page includes them. The index.html page under app/ serves as the template for this Single Page App. So, if you want to set the title, add meta tags, or whatever else... that's the place to do it.

FaviconsWebpackPlugin

The variety of favicon sizes and filenames devices expect (see favicons-best-practices SO question). is bordering on ridiculous. Luckily we can automatically create all of these with the FaviconsWebpackPlugin. This plugin automatically generates all of them from the file specified, app/images/favicon.png and, in conjunction with the HtmlWebpackPlugin, places them in the head of our templateindex.html file on build.

Code splitting

One traditional problem with Single Page Applications is that all the code had to be loaded at once on initial page load, even if it wasn't all needed. This often means seconds of blank screen and unnecessary data transfer. Webpack is able to split your code into "chunks" that can be loaded on demand. Only the code for the visible page needs to be fetched from the server and successive page visits fetch new chunks as needed.

See Webpack code splitting documentation.

In this demo, see any route specification like app/routes/About/index.js

if (ONSERVER) {
    module.exports = require('./components/About.jsx').default;
} else {
    module.exports = () => (<Bundle load={ () => import('./components/About.jsx') }/>);
}

In this Demo, we use import for fetching react-router components. This results in chunks for for our About page which are only fetched when the client visits /about. The Bundle component is a convenience wrapper which displays a loading component while the Promise returned by System.import is resoliving. Once resolved, Bundle changes it's state to display the requested component.

About the ONSERVER switch: This constant is defined in the webpack config file webpack.server.config.js as true and false in the client config. Although admittedly not the sexy, it seems to be the most straightforward approach and is necessary at the moment because the server side renderToString doesn't wait for Promises (ie. chunking) to resolve. Instead, we have to disable the chunking/asyc module fetch by switching to a synchronous require(). We could just use require() everywhere (server side and client) but then we'd loose chunking!

universal-react-demo's People

Contributors

5tefan avatar dependabot[bot] avatar kutsan avatar vlod 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.