browserify-handbook icon indicating copy to clipboard operation
browserify-handbook copied to clipboard

how to build modular applications with browserify

Results 19 browserify-handbook issues
Sort by recently updated
recently updated
newest added

From https://github.com/babel/babelify/issues/142, it seems the syntax where individual transforms are specified as arrays is correct. ``` "browserify": { "transform": [ "brfs", [ "babelify", { "presets": ["es2015"] } ] ] }...

Hi, I am using Browserify in a legacy browser environment, which means that the window namespace is volatile and unsuitable for storing global variables that I want as globals in...

I really like the section about creating a small reusable widget in HTML. I wonder if people do that in practice and if one can find such packages in npm?...

This handbook is totally awesome and comprehensive, but the large file means that it's a bit unwieldy to navigate. Any chance to split it into multiple files? [github makes cross-linking...

On npm 2.0.0, there is a really nice way to install local code and I haven’t seen any information about this (regardless of node or browserify). If you feel description...

In the section: So even if a module does a lot of buffer and stream operations, it will probably just work in the browser, so long as it doesn't do...

https://github.com/substack/browserify-handbook#window-globals > This approach tends to be very slow since each script tag initiates a new round-trip http request... > loads much faster because only a single http request for...

Getting error `require is not defined` ``` Uncaught ReferenceError: require is not defined at index.html:10:27 (anonymous) @ index.html:10 ``` The command I am using is `browserify index.js > browser.js` `index.html`...