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

Steps to reproduce issue: 1. Install 'coffeeify' globally: `npm install -g coffeeify` 2. Try to run browserify with coffeeify: `browserify -t coffeeify` 3. Browserify complains that it can't find coffeeify...

I'm having a problem with browserify creating multiple bundles that are not 100% compatible. In my main app bundle (bundle 1), I have a module id'd as "1". Then for...

Some modules check for the existence of Buffer but don't require it to work. Because the identifier `Buffer` is seen by browserify, it becomes bundled. Buffer addes quite a lot...

If we try to require a builtin in a dynamic way: ```js require('buf' + 'fer') ``` it throws an error even if `Buffer` is used/required by other modules.

**What's happening?** gulp and/or Browserify are compiling incomplete js, resulting in an `Unexpected end of input` console error on page load. **What did you expect to happen?** To have functional...

Adds #1539 test for now. Will be fixed once https://github.com/defunctzombie/node-browser-resolve/pull/84 is merged.

Is there any way to run browserify on a file/stdin, skipping all bundling steps and just applying a transform/plugin? That would enable browserify for other bundling systems, like [ncc](https://github.com/zeit/ncc) or...

Hello @substack @feross @zertosh @hughsk! There is a chance I’m missing something, but is there any specific reason why we cannot implement package replacement in `browser` field, not only the...

I bundle a project using **browserify**, previously installed puppeteer with npm install -g puppeteer. There is a part of my code: const puppeteer = require('puppeteer'); When im trying to browserify...

Hi I'm wondering how many of the devdeps are strictly needed for building? How many are needed if we want to test it too? (no docs or linting needed) We...