browserify icon indicating copy to clipboard operation
browserify copied to clipboard

browser-side require() the node.js way

Results 129 browserify issues
Sort by recently updated
recently updated
newest added

Old assert@v1 doesn't work as expected because it use an old comparison. ```console > assert.strictEqual(NaN, NaN) Uncaught [AssertionError: NaN === NaN] { actual: NaN, expected: NaN, operator: '===', generatedMessage: true...

Update buffer to ^6.0.3 ## Browser support BREAKING: Drop IE11, Safari 9-10 support. This affects ~1.16% of global browser users (source: https://caniuse.com/usage-table) and this number continues to decrease each month....

I am currently creating a routing web app and I'm using a geojson-path-finder package. In initializing the package, the code should be like this: ``` var PathFinder = require('geojson-path-finder'); var...

This allows passing options such as `readFile/isFile/isDirectory` down to `resolve`. I needed this while integrating browserify into a new build system that tracks dependencies for minimal rebuilds. The existing hooks...

My code is compiled without error but it's giving an error while running. I'm using var fs = require('fs-extra'); installed using npm i fs-extra can you please tell me the...

looks like theres an issue with plan count https://ci.appveyor.com/project/browserify/browserify/builds/35674497/job/lt5544d5ttcjla1n#L1319

this code can replace the use of detective in module-deps. idk what version of node has support for set and string.matchAll but both can be polyfilled. Either way, this is...

This is relevant for the "browser-pack" module, and specifically the prelude wrapper. The issue/decision to make is probably just where the best place to implement this in the browserify settings...

Is there any reason why `stream-browserify` depends on `[email protected]` while `browserify` itself depends on `readable-stream@^2` ? Right now streams are kind of unusable: 1. `stream-browserify` dependency tree is botched see...

bug

can do this ```js const bundler = browserify() bundler.external(externalDeps) ``` but no option for this ```js browserify({ external: externalDeps }) ```

feature-request
patch-welcome