Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 2.57 KB

webpack-advanced-techniques.md

File metadata and controls

50 lines (36 loc) · 2.57 KB

Webpack Advanced Techniques

Articles and Slideshows

Examples

  • Using React with "plain" Webpack HMR
    reduxjs/redux#1455
    Dan Abramov removes use of the React-Transform plugin from Redux's examples, and demonstrates how to use the "plain" Webpack HMR API to do reloading of updated components, reducers, and other code.

  • Basic HMR Usage Example
    https://gist.github.com/markerikson/dc6cee36b5b6f8d718f2e24a249e0491
    An extracted example demonstrating using "plain" HMR to reload components, reducers, and even sagas.