|
|
|
|
|
by petecoop
3467 days ago
|
|
Have you tried using watchify [1] to speed up your builds in development? I've also been using browserify-hmr [2] which is working nicely for hot module replacement and found it easier to setup than Webpack's hmr. I think one of Webpack's benefits is that this stuff is all bundled with it, so everyone's using it but with browserify you need to go out and find these solutions yourself [1]: https://www.npmjs.com/package/watchify [2]: https://www.npmjs.com/package/browserify-hmr |
|
Ah, it never even occurred to me to look for something like browserify-hmr, will definitely try this out!