react-hot-loader

Tweak React components in real time. (Deprecated: use Fast Refresh instead.)

MIT License

Downloads
2.7M
Stars
12.3K
Committers
242

Bot releases are visible (Hide)

react-hot-loader - v1.1.3

Published by gaearon over 9 years ago

  • Avoid warnings on React 0.13
react-hot-loader - v1.1.2

Published by gaearon over 9 years ago

  • Compatibility with React 0.13.0-beta.1
react-hot-loader - v1.1.1

Published by gaearon almost 10 years ago

  • Fix edge cases by requiring react/lib/ReactMount in transformed source files
  • Add a warning if ReactMount doesn't return anything useful (e.g. when using external React)
react-hot-loader - v1.1.0

Published by gaearon almost 10 years ago

  • Skipping node_modules entirely wasn't the best idea. Instead, we now specifically skip node_modules/react/, node_modules/webpack/ and node_modules/react-hot-loader/. However you are still encouraged to add exclude: /node_modules/ to your loader config for best performance.
  • Now modules that don't export any valid React classes in module.exports or any its properties will not be auto-accepted. This prevents hot loader from trying to handle non-React updates and allows changes in plain JS files to propagate to components that can handle them. For example, this allows react-jss mixin to apply hot updates to JSS styles.
react-hot-loader - v1.0.7

Published by gaearon almost 10 years ago

  • Skip node_modules entirely. Fixes #54 on Windows.
react-hot-loader - v1.0.6

Published by gaearon almost 10 years ago

  • Add require('react-hot-loader/Injection') to override Hot Loader behavior. Now you can supply your own way of getting root component instances, so Hot Loader can also work in environment where react/lib/ReactMount is not available (for example, when React is used as standalone bundle and not NPM package).
react-hot-loader - v1.0.5

Published by gaearon almost 10 years ago

  • Fix stack overflow when hotifying class twice (#52)
react-hot-loader - v1.0.4

Published by gaearon almost 10 years ago

  • Allow both module.exports and its properties be components (Fixes #50)
react-hot-loader - v1.0.3

Published by gaearon almost 10 years ago

  • In addition to hotifying module.exports by default, also hotify all its own properties
react-hot-loader - v1.0.2

Published by gaearon almost 10 years ago

  • Include bugfix from react-hot-api: don't try to hot-replace exported ReactElements
react-hot-loader - v1.0.1

Published by gaearon almost 10 years ago

  • Delay requireing ReactMount to avoid circular dependencies
  • Don't process React or Webpack internals to avoid potential issues
react-hot-loader - v1.0

Published by gaearon almost 10 years ago

Everything that's been available in previous alpha releases:

  • Don't rely on createClass regex or any other regex
  • Only module.exports is hot by default, new module.makeHot API for opt-in
  • Supports ES6 classes when they land in React 0.13
  • Supports dynamically created classes
  • Manual mode

This will be documented here very soon.

react-hot-loader - v1.0.0-alpha.3

Published by gaearon almost 10 years ago

  • Add ?manual mode
react-hot-loader - v1.0.0-alpha.2

Published by gaearon almost 10 years ago

  • Fully support React 0.13
react-hot-loader - v1.0.0-alpha.1

Published by gaearon almost 10 years ago

  • Fix autobinding issues
react-hot-loader - v1.0.0-alpha

Published by gaearon almost 10 years ago

Alpha release of a large rewrite.

  • Supports ES6 classes (with React master)
  • Supports dynamic createClass calls with opt-in hot reload via module.makeHot
react-hot-loader - v0.5.0

Published by gaearon about 10 years ago

  • Source maps
react-hot-loader - v0.4.5

Published by gaearon about 10 years ago

  • Collapse all hot loader code in one line so it doesn't obscure beginning of file.
react-hot-loader - v0.4.4

Published by gaearon about 10 years ago

  • Errors occuring in module definition (such as ReferenceError) should not disable further reloading (fixes #29)
react-hot-loader - v0.4.3

Published by gaearon about 10 years ago