Echo JS 0.11.0

<~>
igl 2603 days ago. link -1 point
No code splitting, tree shaking and HMR :/
Webpack is still the only way.

Replies

nchanged 2603 days ago. link 3 points
1) We support HMR
2) We have different approaches.You can split your code as much as you like, creating bundles using arithmetic instructions http://fuse-box.org/#arithmetic-instructions

3) WebPack tree-sharking works poorly. We are working on a universal solution that will support CommonJS tree-shaking.
feras khoursheed 2603 days ago. link 2 points
igl, we do have HMR
http://fuse-box.org/#dev-server-and-hmr

please also check our seed projects that already use it like
https://github.com/fuse-box/fuse-box-express-seed
https://github.com/fuse-box/fuse-box-vue-seed

as for code splitting, yes we have it, we call it multi-entry bundles, sorry for the lack of docs it will be addressed ASAP.

as for tree shaking, we are working on tackling this issue in a sensable way.

please give FuseBox a try, you will love it and see how easy, fast and powerful it is :)
yyx990803 2599 days ago. link 1 point
The docs doesn't seem to mention anything like Webpack's HMR API - i.e. module.hot.accept(). I hope you are not confusing HMR with reload-on-save?