browserify-react-live
v3.1.3
Published
React live module reload for browserify
Readme
Browserify React Live
This is a browserify transform which works similarly to react-hot-loader. Once you run you app in the browser, it monitors your JavaScript code and only updates the changed component, preserving the state of the application.
Installing
npm install browserify-react-live --save-devQuick example
git clone https://github.com/Kureev/browserify-react-live.git
cd browserify-react-live/examples/01\ -\ Basic
npm i && npm startRun http://localhost:8080 and try updating the component.
Running
Add transform to package.json:
"browserify": {
"transform": [
"browserify-react-live"
]
}or run watchify with transform from the CLI:
watchify -t browserify-react-live components/file.js -o bundles/file.jsStart browserify-patch-server:
node_modules/.bin/browserify-patch-server components/*Configuration
Port number
Server
node_modules/.bin/browserify-patch-server components/* -p 8888 # Default is 8081Transform
watchify -t [ browserify-react-live -p 8888 ] components/file.js -o bundles/file.js # Default is 8080
How it works
browserify-react-live works with browserify-patch-server:
browserify-patch-serverThis part is responsible for watching changes for specified path and compute/broadcast patch. Every time watched files changes, it automatically calculate patch and send it via websocket to client.browserify-react-livetransform. Patch browserify'srequirefunction to inject Dan Abramov'sreact-hot-apiand websocket client which will wait for server broadcast and apply received patch.
Migration 1.x -> 2.x
- Now you need to watch files instead of bundle. E.g.
components/*instead ofdist/bundle.js
Compatibility
node> 0.10 orio.js> 2.0
License
MIT
