Closed rgbkrk closed 8 years ago
Chrome's debugging interface works pretty differently than the hot module replacement API used in react-transform-hmr. Here's a good discussion about the differences. react-transform-hmr would be unlikely to support it directly. react-proxy (which react-transform-hmr uses) might be useful for a project doing this though.
Also https://github.com/geowarin/electron-hot-loader/ for a project that uses react-proxy
with Electron.
Thanks @gaearon!
Do you think there's a way to use this with Electron, without Browserify or Webpack, relying on the
chrome-remote-interface
? That's what electron-hot uses, which works quite well for pure functions. About to try it with React.