Code Monkey home page Code Monkey logo

browserify-react-live's Introduction

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-dev

Quick example

git clone https://github.com/Kureev/browserify-react-live.git
cd browserify-react-live/examples/01\ -\ Basic
npm i && npm start

Run 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.js

Start 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 8081
  • Transform

    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-server This 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-live transform. Patch browserify's require function to inject Dan Abramov's react-hot-api and 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 of dist/bundle.js

Compatibility

  • node > 0.10 or io.js > 2.0

License

MIT

browserify-react-live's People

Contributors

fraserxu avatar kirjs avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.