2.1.2 • Published 5 years ago

react-hot-reload.macro v2.1.2

Weekly downloads
32
License
MIT
Repository
github
Last release
5 years ago

react-hot-reload.macro

Babel Macro NPM npm.io

Zero configuration :fire:Hot Module Replacement:fire: using Babel macro and react-hot-loader, mostly for Create React App (v2+) users

No eject :tada: No configuration :tada:

Usage

yarn add react-hot-reload.macro
# or
npm install --save react-hot-reload.macro

Modify your App.js component

import React from 'react'
+import hot from 'react-hot-reload.macro'

...

-export default App
+export default hot(App)

That's it. Happy Hacking!

React-:fire:-DOM

RHL will patch React, replace React-DOM by React-🔥-DOM and work with fiber directly

Since RHL 4.5.0+, you would need to patch react-dom by @hot-loader/react-dom

Currently only available option without ejecting is using Yarn's name resolution.

yarn add react-dom@npm:@hot-loader/react-dom

(if anyone know another workaround of it, please let me know)

Configure RHL

You still can use RHL's APIs. Following the setConfig() API of RHL.

Changelog

  • v2.1.2

    • Add Flow type definition
    • Update babel-plugin-macros to ^2.5.1
    • Update react-hot-loader to ^4.8.2
  • v2.1.0

    • Update babel-plugin-macros to ^2.5.0
    • Update react-hot-loader to ^4.7.0
  • v2.0.2

    • Add TypeScript definition
2.1.2

5 years ago

2.1.1

5 years ago

2.1.0

5 years ago

2.0.2

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago