You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently this page claims that this is "not possible":
If you're a Browserify user that would like to use async components, it's unfortunately not possible and probably never will be, as its creator has made it clear that async loading "is not something that Browserify will ever support." If this is a feature that's important to you, we recommend using Webpack instead.
It is in fact possible to do code splitting just fine with browserify. We're doing it in our project.
For example, when using grunt-browserify, as part of its config you can specify which components you want to create that are standalone, as I do here using a custom browserifyCfg function to generate the config:
Thus UserGroupView is created as a separate file from the rest of the bundle. Here's the (simplified) code for browserifyCfg:
functionbrowserifyCfg({straight, lazy},cfg={}){varglobalize=x=>// views/UserGroupView.vue -> UserGroupViewS(path.parse(x).name).dasherize().capitalize().camelize().svarkeyify=x=>// views/UserGroupView.vue -> userGroupViewS(path.parse(x).name).dasherize().chompLeft('-').camelize().svarp=(s, ...v)=>_.flatten(_.zip(s,v)).join('').replace('/',path.sep)functiongencfg(out,paths,isLazy){varc={options: {transform: ['vueify','babelify']},files: _.fromPairs([[out,paths]])}if(isLazy){c.options.browserifyOptions.standalone=globalize(out)// <-- this creates a standalone filec.options.exclude=['vue','vue-hot-reload-api']}returnc}for(letmapofstraight){for(letoutinmap){cfg[keyify(out)]=gencfg(out,map[out],false)}}for(letmapoflazy){for(letoutinmap){cfg[keyify(out)]=gencfg(out,map[out],true)}}returncfg}
And then you lazily load the component using a library like VueScript2, e.g.:
importVS2from'vue-script2'Vue.use(VS2)functionlazyLoadVue(component,base='/js'){returnfunction(resolve,reject){VS2.load(`${base}/${component}.js`).then(()=>resolve(window[component])).catch((err)=>reject(err))}}// lazy load the componentlazyLoadVue('UserGroupView')
Alternatively, there's also Yahoo's extractify browserify transform, which is a:
Browserify plugin to extract code to be lazy loaded into separate bundles
Not sure if that's relevant/useful tho.
The text was updated successfully, but these errors were encountered:
I can submit a PR to address this, but am not sure what form it should take. It could just be a link to this issue as an example of how to do it. Or w/e.
Thanks for sharing this workaround @taoeffect! 🎉 I just updated that note with a link to this thread, which I'll close now, but still welcome people to share any techniques they've found helpful to get past this limitation.
Currently this page claims that this is "not possible":
It is in fact possible to do code splitting just fine with browserify. We're doing it in our project.
For example, when using grunt-browserify, as part of its config you can specify which components you want to create that are standalone, as I do here using a custom
browserifyCfg
function to generate the config:Thus
UserGroupView
is created as a separate file from the rest of the bundle. Here's the (simplified) code forbrowserifyCfg
:And then you lazily load the component using a library like VueScript2, e.g.:
Alternatively, there's also Yahoo's extractify browserify transform, which is a:
Not sure if that's relevant/useful tho.
The text was updated successfully, but these errors were encountered: