yangyi / react-hot-boilerplate

Compatibility tables of react-hot-loader with react-router and different component types

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-hot-boilerplate

Fork details

This fork's purpose is to checks how well react-hot-loader works with react-router and different kinds of components. It contains examples of most types of routes and components react-router has.

Compatibility Tables

All tested components use export default connect(..)(Component), except for the SyncReferenceModifiedComponent.

Legend:

  • ✓ = Keeps state after hot-load
  • ✗ = Loses state after hot-load
  • — = Ignores update completely

Component Types:

  • Sync*: A component included in the initial bundle
  • Async*: A component loaded asynchronously (through require.ensure)

react-hot-loader/babel

Current compatibility table for hot-loading with react-hot-loader/babel:

Component Hot Loading
Sync
SyncIndexRouteComponent
SyncRouteComponent
SyncRouteComponentChild
SyncNonExportedComponent 1
SyncReferenceModifiedComponent
SyncAssignedComponent
Aync
AsyncIndexRouteComponent
AsyncRouteComponent
AsyncRouteComponentChild

1: only for non-exported component, not for exported component

After manually remounting the components by changing routes back and forth all hot-updates were applied to components which ignored updates initially (marked with —).

react-hot-loader/webpack

Not tested.

Usage

npm install
npm start
open http://localhost:3000

Now edit src/App.js.
Your changes will appear without reloading the browser like in this video.

Related Issues

About

Compatibility tables of react-hot-loader with react-router and different component types

License:MIT License


Languages

Language:JavaScript 98.6%Language:HTML 1.4%