livereactload

Live code editing with Browserify and React

Github星跟踪图

LiveReactload

Live code editing with Browserify and React.

:exclamation: :exclamation: :exclamation:

ATTENTION! The upcoming 4.x version will be using the new react-hot-loader
and it is already available in npm as a beta tag. If you want to test it, check out the migration guide and
installation instructions here!

:exclamation: :exclamation: :exclamation:

Gitter
npm version
Build Status

Motivation

Hot reloading is de facto in today's front-end scene but unfortunately
there isn't any decent implementation for Browserify yet. This is shame because
(in my opinion) Browserify is the best bundling tool at the moment.

Hence the goal of this project is to bring the hot reloading functionality
to Browserify by honoring its principles: simplicity and modularity.

How it works?

LiveReactload can be used as a normal Browserify plugin. When applied to the bundle,
it modifies the Browserify bundling pipeline so that the created bundle becomes
"hot-reloadable".

  • LiveReactload starts the reloading server which watches the bundle changes
    and sends the changed contents to the browser via WebSocket.
  • When the changes arrive to the browser, LiveReactload client (included automatically
    in the bundle) analyzes the changes and reloads the changed modules

Starting from version 2.0.0 LiveReactload utilizes Dan Abramov's
babel-plugin-react-transform and
react-proxy, which means that hot-reloading
capabilities are same as in Webpack.

And because one photo tells more than a thousand words, watch this video to see
LiveReactload in action.

Other implementations

If you are a Webpack user, you probably want to check
react-transform-boilerplate.

If you want to stick with browserify, but use the Hot Module Reloading API (like webpack), you could use: browserify-hmr, babel-plugin-react-transform and
react-transform-hmr

Usage

Pre-requirements

LiveReactload requires watchify, babelify and react >= 0.13.x in order to
work.

Installation (Babel 6.x)

Install pre-requirements (if not already exist)

npm i --save react
npm i --save-dev watchify

Install babelify and its dependencies

npm i --save babelify babel-preset-es2015 babel-preset-react

Install React proxying components and LiveReactload

npm i --save-dev livereactload react-proxy@1.x babel-plugin-react-transform

Create .babelrc file into project's root directory (or add react-transform extra
if the file already exists). More information about .babelrc format and options
can be found from babel-plugin-react-transform.

{
  "presets": ["es2015", "react"],
  "env": {
    "development": {
      "plugins": [
        ["react-transform", {
          "transforms": [{
            "transform": "livereactload/babel-transform",
            "imports": ["react"]
          }]
        }]
      ]
    }
  }
}

And finally use LiveReactload as a Browserify plugin with watchify. For example:

node_modules/.bin/watchify site.js -t babelify -p livereactload -o static/bundle.js

That's it! Now just start (live) coding! For more detailed example, please see
the basic usage example.

Reacting to reload events

Ideally your client code should be completely unaware of the reloading. However,
some libraries like redux require a little hack for hot-reloading. That's why
LiveReactload provides module.onReload(..) hook.

By using this hook, you can add your own custom functionality that is
executed in the browser only when the module reload occurs:

if (module.onReload) {
  module.onReload(() => {
    ... do something ...
    // returning true indicates that this module was updated correctly and
    // reloading should not propagate to the parent components (if non-true
    // value is returned, then parent module gets reloaded too)
    return true
  });
}

For more details, please see the redux example.

How about build systems?

LiveReactload is build system agnostic. It means that you can use LiveReactload with
all build systems having Browserify and Watchify support. Please see
build systems example for more information.

When does it not work?

Well... if you hide your state inside the modules then the reloading will lose
the state. For example the following code will not work:

// counter.js
const React = require('react')

let totalClicks = 0

export default React.createClass({

  getInitialState() {
    return {clickCount: totalClicks}
  },

  handleClick() {
    totalClicks += 1
    this.setState({clickCount: totalClicks})
  },


  render() {
    return (
      <div>
        <button onClick={this.handleClick}>Increment</button>
        <div>{this.state.clickCount}</div>
      </div>
    )
  }
})

Configuration options

You can configure the LiveReactload Browserify plugin by passing some options
to it (-p [ livereactload <options...> ], see Browserify docs for more information
about config format).

Available options

LiveReactload supports the following configuration options

--no-server

Prevents reload server startup. If you are using LiveReactload plugin with Browserify
(instead of watchify), you may want to enable this so that the process won't hang after
bundling. This is not set by default.

--port <number>

Starts reload server to the given port and configures the bundle's client to
connect to the server using this port. Default value is 4474

--host <hostname>

Configures the reload client to use the given hostname when connecting to the
reload server. You may need this if you are running the bundle in an another device.
Default value is localhost

--no-dedupe

Disables Browserify module de-duplication. By default, de-duplication is enabled.
However, sometimes this de-duplication with may cause an invalid bundle with LiveReactload.
You can disable this de-duplication by using this flag.

--no-client

Omits the reload client from the generated bundle.

--ssl-cert <certFilename> and --ssl-key <privateKeyFilename>

Adds your custom SSL certificate and key to the reload web-server. This is needed if you
want to use LiveReactLoad in HTTPS site. Parameters are paths to the actual files.

--no-babel

If you use a tool other than Babel to transform React syntax, this disables the in-browser warning that would otherwise appear.

--moduledir <node_modules>

Directory pointing node modules where livereactload is installed. By default points to <root-dir>/node_modules.

License

MIT

Contributing

Please create a Github issue if problems occur. Pull request are also welcome
and they can be created to the development branch.

主要指标

概览
名称与所有者milankinen/livereactload
主编程语言JavaScript
编程语言JavaScript (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2015-03-26 13:42:05
推送于2021-10-09 11:20:15
最后一次提交2019-04-11 21:34:41
发布数36
最新版本名称3.5.0 (发布于 2019-04-11 21:30:51)
第一版名称0.2.0 (发布于 2015-03-29 01:08:45)
用户参与
星数864
关注者数11
派生数61
提交数428
已启用问题?
问题数118
打开的问题数13
拉请求数36
打开的拉请求数0
关闭的拉请求数12
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?