Giter VIP home page Giter VIP logo

browserify's Introduction

browserify

require('modules') in the browser

Use a node-style require() to organize your browser code and load modules installed by npm.

browserify will recursively analyze all the require() calls in your app in order to build a bundle you can serve up to the browser in a single <script> tag.

build status

browserify!

getting started

If you're new to browserify, check out the browserify handbook and the resources on browserify.org.

example

Whip up a file, main.js with some require()s in it. You can use relative paths like './foo.js' and '../lib/bar.js' or module paths like 'gamma' that will search node_modules/ using node's module lookup algorithm.

var foo = require('./foo.js');
var bar = require('../lib/bar.js');
var gamma = require('gamma');

var elem = document.getElementById('result');
var x = foo(100) + bar('baz');
elem.textContent = gamma(x);

Export functionality by assigning onto module.exports or exports:

module.exports = function (n) { return n * 111 }

Now just use the browserify command to build a bundle starting at main.js:

$ browserify main.js > bundle.js

All of the modules that main.js needs are included in the bundle.js from a recursive walk of the require() graph using required.

To use this bundle, just toss a <script src="bundle.js"></script> into your html!

install

With npm do:

npm install browserify

usage

Usage: browserify [entry files] {OPTIONS}

Standard Options:

    --outfile, -o  Write the browserify bundle to this file.
                   If unspecified, browserify prints to stdout.

    --require, -r  A module name or file to bundle.require()
                   Optionally use a colon separator to set the target.

      --entry, -e  An entry point of your app

     --ignore, -i  Replace a file with an empty stub. Files can be globs.

    --exclude, -u  Omit a file from the output bundle. Files can be globs.

   --external, -x  Reference a file from another bundle. Files can be globs.

  --transform, -t  Use a transform module on top-level files.

    --command, -c  Use a transform command on top-level files.

  --standalone -s  Generate a UMD bundle for the supplied export name.
                   This bundle works with other module systems and sets the name
                   given as a window global if no module system is found.

       --debug -d  Enable source maps that allow you to debug your files
                   separately.

       --help, -h  Show this message

For advanced options, type `browserify --help advanced`.

Specify a parameter.
Advanced Options:

  --insert-globals, --ig, --fast    [default: false]

    Skip detection and always insert definitions for process, global,
    __filename, and __dirname.

    benefit: faster builds
    cost: extra bytes

  --insert-global-vars, --igv

    Comma-separated list of global variables to detect and define.
    Default: __filename,__dirname,process,Buffer,global

  --detect-globals, --dg            [default: true]

    Detect the presence of process, global, __filename, and __dirname and define
    these values when present.

    benefit: npm modules more likely to work
    cost: slower builds

  --ignore-missing, --im            [default: false]

    Ignore `require()` statements that don't resolve to anything.

  --noparse=FILE

    Don't parse FILE at all. This will make bundling much, much faster for giant
    libs like jquery or threejs.

  --no-builtins

    Turn off builtins. This is handy when you want to run a bundle in node which
    provides the core builtins.

  --no-commondir

    Turn off setting a commondir. This is useful if you want to preserve the
    original paths that a bundle was generated with.

  --no-bundle-external

    Turn off bundling of all external modules. This is useful if you only want
    to bundle your local files.

  --bare

    Alias for both --no-builtins, --no-commondir, and sets --insert-global-vars
    to just "__filename,__dirname". This is handy if you want to run bundles in
    node.

  --no-browser-field, --no-bf

    Turn off package.json browser field resolution. This is also handy if you
    need to run a bundle in node.

  --transform-key

    Instead of the default package.json#browserify#transform field to list
    all transforms to apply when running browserify, a custom field, like, e.g.
    package.json#browserify#production or package.json#browserify#staging
    can be used, by for example running:
    * `browserify index.js --transform-key=production > bundle.js`
    * `browserify index.js --transform-key=staging > bundle.js`

  --node

    Alias for --bare and --no-browser-field.

  --full-paths

    Turn off converting module ids into numerical indexes. This is useful for
    preserving the original paths that a bundle was generated with.

  --deps

    Instead of standard bundle output, print the dependency array generated by
    module-deps.

  --no-dedupe

    Turn off deduping.

  --list

    Print each file in the dependency graph. Useful for makefiles.

  --extension=EXTENSION

    Consider files with specified EXTENSION as modules, this option can used
    multiple times.

  --global-transform=MODULE, -g MODULE

    Use a transform module on all files after any ordinary transforms have run.

  --ignore-transform=MODULE, -it MODULE

    Do not run certain transformations, even if specified elsewhere.

  --plugin=MODULE, -p MODULE

    Register MODULE as a plugin.

Passing arguments to transforms and plugins:

  For -t, -g, and -p, you may use subarg syntax to pass options to the
  transforms or plugin function as the second parameter. For example:

    -t [ foo -x 3 --beep ]

  will call the `foo` transform for each applicable file by calling:

    foo(file, { x: 3, beep: true })

compatibility

Many npm modules that don't do IO will just work after being browserified. Others take more work.

Many node built-in modules have been wrapped to work in the browser, but only when you explicitly require() or use their functionality.

When you require() any of these modules, you will get a browser-specific shim:

Additionally, if you use any of these variables, they will be defined in the bundled output in a browser-appropriate way:

  • process
  • Buffer
  • global - top-level scope object (window)
  • __filename - file path of the currently executing file
  • __dirname - directory path of the currently executing file

more examples

external requires

You can just as easily create a bundle that will export a require() function so you can require() modules from another script tag. Here we'll create a bundle.js with the through and duplexer modules.

$ browserify -r through -r duplexer -r ./my-file.js:my-module > bundle.js

Then in your page you can do:

<script src="bundle.js"></script>
<script>
  var through = require('through');
  var duplexer = require('duplexer');
  var myModule = require('my-module');
  /* ... */
</script>

external source maps

If you prefer the source maps be saved to a separate .js.map source map file, you may use exorcist in order to achieve that. It's as simple as:

$ browserify main.js --debug | exorcist bundle.js.map > bundle.js

Learn about additional options here.

multiple bundles

If browserify finds a required function already defined in the page scope, it will fall back to that function if it didn't find any matches in its own set of bundled modules.

In this way, you can use browserify to split up bundles among multiple pages to get the benefit of caching for shared, infrequently-changing modules, while still being able to use require(). Just use a combination of --external and --require to factor out common dependencies.

For example, if a website with 2 pages, beep.js:

var robot = require('./robot.js');
console.log(robot('beep'));

and boop.js:

var robot = require('./robot.js');
console.log(robot('boop'));

both depend on robot.js:

module.exports = function (s) { return s.toUpperCase() + '!' };
$ browserify -r ./robot.js > static/common.js
$ browserify -x ./robot.js beep.js > static/beep.js
$ browserify -x ./robot.js boop.js > static/boop.js

Then on the beep page you can have:

<script src="common.js"></script>
<script src="beep.js"></script>

while the boop page can have:

<script src="common.js"></script>
<script src="boop.js"></script>

This approach using -r and -x works fine for a small number of split assets, but there are plugins for automatically factoring out components which are described in the partitioning section of the browserify handbook.

api example

You can use the API directly too:

var browserify = require('browserify');
var b = browserify();
b.add('./browser/main.js');
b.bundle().pipe(process.stdout);

methods

var browserify = require('browserify')

browserify([files] [, opts])

Returns a new browserify instance.

files
String, file object, or array of those types (they may be mixed) specifying entry file(s).
opts
Object.

files and opts are both optional, but must be in the order shown if both are passed.

Entry files may be passed in files and / or opts.entries.

External requires may be specified in opts.require, accepting the same formats that the files argument does.

If an entry file is a stream, its contents will be used. You should pass opts.basedir when using streaming files so that relative requires can be resolved.

opts.entries has the same definition as files.

opts.noParse is an array which will skip all require() and global parsing for each file in the array. Use this for giant libs like jquery or threejs that don't have any requires or node-style globals but take forever to parse.

opts.transform is an array of transform functions or modules names which will transform the source code before the parsing.

opts.ignoreTransform is an array of transformations that will not be run, even if specified elsewhere.

opts.plugin is an array of plugin functions or module names to use. See the plugins section below for details.

opts.extensions is an array of optional extra extensions for the module lookup machinery to use when the extension has not been specified. By default browserify considers only .js and .json files in such cases.

opts.basedir is the directory that browserify starts bundling from for filenames that start with ..

opts.paths is an array of directories that browserify searches when looking for modules which are not referenced using relative path. Can be absolute or relative to basedir. Equivalent of setting NODE_PATH environmental variable when calling browserify command.

opts.commondir sets the algorithm used to parse out the common paths. Use false to turn this off, otherwise it uses the commondir module.

opts.fullPaths disables converting module ids into numerical indexes. This is useful for preserving the original paths that a bundle was generated with.

opts.builtins sets the list of built-ins to use, which by default is set in lib/builtins.js in this distribution.

opts.bundleExternal boolean option to set if external modules should be bundled. Defaults to true.

When opts.browserField is false, the package.json browser field will be ignored. When opts.browserField is set to a string, then a custom field name can be used instead of the default "browser" field.

When opts.insertGlobals is true, always insert process, global, __filename, and __dirname without analyzing the AST for faster builds but larger output bundles. Default false.

When opts.detectGlobals is true, scan all files for process, global, __filename, and __dirname, defining as necessary. With this option npm modules are more likely to work but bundling takes longer. Default true.

When opts.ignoreMissing is true, ignore require() statements that don't resolve to anything.

When opts.debug is true, add a source map inline to the end of the bundle. This makes debugging easier because you can see all the original files if you are in a modern enough browser.

When opts.standalone is a non-empty string, a standalone module is created with that name and a umd wrapper. You can use namespaces in the standalone global export using a . in the string name as a separator, for example 'A.B.C'. The global export will be sanitized and camel cased.

Note that in standalone mode the require() calls from the original source will still be around, which may trip up AMD loaders scanning for require() calls. You can remove these calls with derequire:

$ npm install derequire
$ browserify main.js --standalone Foo | derequire > bundle.js

opts.insertGlobalVars will be passed to insert-module-globals as the opts.vars parameter.

opts.externalRequireName defaults to 'require' in expose mode but you can use another name.

opts.bare creates a bundle that does not include Node builtins, and does not replace global Node variables except for __dirname and __filename.

opts.node creates a bundle that runs in Node and does not use the browser versions of dependencies. Same as passing { bare: true, browserField: false }.

Note that if files do not contain javascript source code then you also need to specify a corresponding transform for them.

All other options are forwarded along to module-deps and browser-pack directly.

b.add(file, opts)

Add an entry file from file that will be executed when the bundle loads.

If file is an array, each item in file will be added as an entry file.

b.require(file, opts)

Make file available from outside the bundle with require(file).

The file param is anything that can be resolved by require.resolve(), including files from node_modules. Like with require.resolve(), you must prefix file with ./ to require a local file (not in node_modules).

file can also be a stream, but you should also use opts.basedir so that relative requires will be resolvable.

If file is an array, each item in file will be required. In file array form, you can use a string or object for each item. Object items should have a file property and the rest of the parameters will be used for the opts.

Use the expose property of opts to specify a custom dependency name. require('./vendor/angular/angular.js', {expose: 'angular'}) enables require('angular')

b.bundle(cb)

Bundle the files and their dependencies into a single javascript file.

Return a readable stream with the javascript file contents or optionally specify a cb(err, buf) to get the buffered results.

b.external(file)

Prevent file from being loaded into the current bundle, instead referencing from another bundle.

If file is an array, each item in file will be externalized.

If file is another bundle, that bundle's contents will be read and excluded from the current bundle as the bundle in file gets bundled.

b.ignore(file)

Prevent the module name or file at file from showing up in the output bundle.

If file is an array, each item in file will be ignored.

Instead you will get a file with module.exports = {}.

b.exclude(file)

Prevent the module name or file at file from showing up in the output bundle.

If file is an array, each item in file will be excluded.

If your code tries to require() that file it will throw unless you've provided another mechanism for loading it.

b.transform(tr, opts={})

Transform source code before parsing it for require() calls with the transform function or module name tr.

If tr is a function, it will be called with tr(file) and it should return a through-stream that takes the raw file contents and produces the transformed source.

If tr is a string, it should be a module name or file path of a transform module with a signature of:

var through = require('through');
module.exports = function (file) { return through() };

You don't need to necessarily use the through module. Browserify is compatible with the newer, more verbose Transform streams built into Node v0.10.

Here's how you might compile coffee script on the fly using .transform():

var coffee = require('coffee-script');
var through = require('through');

b.transform(function (file) {
    var data = '';
    return through(write, end);

    function write (buf) { data += buf }
    function end () {
        this.queue(coffee.compile(data));
        this.queue(null);
    }
});

Note that on the command-line with the -c flag you can just do:

$ browserify -c 'coffee -sc' main.coffee > bundle.js

Or better still, use the coffeeify module:

$ npm install coffeeify
$ browserify -t coffeeify main.coffee > bundle.js

If opts.global is true, the transform will operate on ALL files, despite whether they exist up a level in a node_modules/ directory. Use global transforms cautiously and sparingly, since most of the time an ordinary transform will suffice. You can also not configure global transforms in a package.json like you can with ordinary transforms.

Global transforms always run after any ordinary transforms have run.

Transforms may obtain options from the command-line with subarg syntax:

$ browserify -t [ foo --bar=555 ] main.js

or from the api:

b.transform('foo', { bar: 555 })

In both cases, these options are provided as the second argument to the transform function:

module.exports = function (file, opts) { /* opts.bar === 555 */ }

Options sent to the browserify constructor are also provided under opts._flags. These browserify options are sometimes required if your transform needs to do something different when browserify is run in debug mode, for example.

b.plugin(plugin, opts)

Register a plugin with opts. Plugins can be a string module name or a function the same as transforms.

plugin(b, opts) is called with the browserify instance b.

For more information, consult the plugins section below.

b.pipeline

There is an internal labeled-stream-splicer pipeline with these labels:

  • 'record' - save inputs to play back later on subsequent bundle() calls
  • 'deps' - module-deps
  • 'json' - adds module.exports= to the beginning of json files
  • 'unbom' - remove byte-order markers
  • 'unshebang' - remove #! labels on the first line
  • 'syntax' - check for syntax errors
  • 'sort' - sort the dependencies for deterministic bundles
  • 'dedupe' - remove duplicate source contents
  • 'label' - apply integer labels to files
  • 'emit-deps' - emit 'dep' event
  • 'debug' - apply source maps
  • 'pack' - browser-pack
  • 'wrap' - apply final wrapping, require= and a newline and semicolon

You can call b.pipeline.get() with a label name to get a handle on a stream pipeline that you can push(), unshift(), or splice() to insert your own transform streams.

b.reset(opts)

Reset the pipeline back to a normal state. This function is called automatically when bundle() is called multiple times.

This function triggers a 'reset' event.

package.json

browserify uses the package.json in its module resolution algorithm, just like node. If there is a "main" field, browserify will start resolving the package at that point. If there is no "main" field, browserify will look for an "index.js" file in the module root directory. Here are some more sophisticated things you can do in the package.json:

browser field

There is a special "browser" field you can set in your package.json on a per-module basis to override file resolution for browser-specific versions of files.

For example, if you want to have a browser-specific module entry point for your "main" field you can just set the "browser" field to a string:

"browser": "./browser.js"

or you can have overrides on a per-file basis:

"browser": {
  "fs": "level-fs",
  "./lib/ops.js": "./browser/opts.js"
}

Note that the browser field only applies to files in the local module, and like transforms, it doesn't apply into node_modules directories.

browserify.transform

You can specify source transforms in the package.json in the browserify.transform field. There is more information about how source transforms work in package.json on the module-deps readme.

For example, if your module requires brfs, you can add

"browserify": { "transform": [ "brfs" ] }

to your package.json. Now when somebody require()s your module, brfs will automatically be applied to the files in your module without explicit intervention by the person using your module. Make sure to add transforms to your package.json dependencies field.

events

b.on('file', function (file, id, parent) {})

b.pipeline.on('file', function (file, id, parent) {})

When a file is resolved for the bundle, the bundle emits a 'file' event with the full file path, the id string passed to require(), and the parent object used by browser-resolve.

You could use the file event to implement a file watcher to regenerate bundles when files change.

b.on('package', function (pkg) {})

b.pipeline.on('package', function (pkg) {})

When a package file is read, this event fires with the contents. The package directory is available at pkg.__dirname.

b.on('bundle', function (bundle) {})

When .bundle() is called, this event fires with the bundle output stream.

b.on('reset', function () {})

When the .reset() method is called or implicitly called by another call to .bundle(), this event fires.

b.on('transform', function (tr, file) {})

b.pipeline.on('transform', function (tr, file) {})

When a transform is applied to a file, the 'transform' event fires on the bundle stream with the transform stream tr and the file that the transform is being applied to.

plugins

For some more advanced use-cases, a transform is not sufficiently extensible. Plugins are modules that take the bundle instance as their first parameter and an option hash as their second.

Plugins can be used to do perform some fancy features that transforms can't do. For example, factor-bundle is a plugin that can factor out common dependencies from multiple entry-points into a common bundle. Use plugins with -p and pass options to plugins with subarg syntax:

browserify x.js y.js -p [ factor-bundle -o bundle/x.js -o bundle/y.js ] \
  > bundle/common.js

For a list of plugins, consult the browserify-plugin tag on npm.

list of source transforms

There is a wiki page that lists the known browserify transforms.

If you write a transform, make sure to add your transform to that wiki page and add a package.json keyword of browserify-transform so that people can browse for all the browserify transforms on npmjs.org.

third-party tools

There is a wiki page that lists the known browserify tools.

If you write a tool, make sure to add it to that wiki page and add a package.json keyword of browserify-tool so that people can browse for all the browserify tools on npmjs.org.

changelog

Releases are documented in changelog.markdown and on the browserify twitter feed.

license

MIT

browserify!

browserify's People

Contributors

1602 avatar alexstrat avatar andreypopp avatar apaleslimghost avatar avianflu avatar calvinmetcalf avatar chapel avatar defunctzombie avatar devongovett avatar domenic avatar erithmetic avatar feross avatar forbeslindesay avatar goto-bus-stop avatar hughsk avatar jacwright avatar jhnns avatar jmm avatar kumavis avatar ljharb avatar mellowmelon avatar raynos avatar ryysud avatar stevemao avatar tehshrike avatar terinjokes avatar thlorenz avatar toots avatar yoshuawuyts avatar zertosh avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

browserify's Issues

Sub require

Hi, thank you for a best browser require module. I'm trying to port Nohm to browser using browserify and have some problems with it.

var connect = require('connect');
var server = connect.createServer();
server.use(connect.static(__dirname + '/www'));
server.use(require('browserify')({
    require: ['nohm']
}));
server.listen(3000);
<head>
    <script type="text/javascript" src="/browserify.js"></script>
    <script type="text/javascript">
        var nohm = require('nohm');
    </script>
</head>
<body></body>
</html>

There are two errors:
Uncaught Error: Cannot find module 'util'
Uncaught Error: Cannot find module 'nohm/helpers'
nohm/helpers is required in nohm module like require(__dirname + '/helpers')

Please specify the direction of where to could be the problem. Thanks in advance.

"base" doesn't work in package.json

it looks like only the string form of "base" is supported in package.json, but it would be convenient for code re-use if this also worked with the object-style.

$ being replaced?

I am trying to use browserify as follows:

server.use(require('browserify')({
    base: __dirname + '/js', 
    mount: '/browserify.js', 
    require: ['underscore', 'backbone']
}));

backbone contains this line (among others):

// For Backbone's purposes, either jQuery or Zepto owns the `$` variable.
var $ = this.jQuery || this.Zepto;

Which browserify is turning into:

// For Backbone's purposes, either jQuery or Zepto owns the `_browserifyRequire.modules["./lib/vendor/backbone"] = function () {
  var module = { exports : {} };
  var exports = module.exports;
  var require = function (path) {
      return _browserifyRequire.fromFile("./lib/vendor/backbone", path);
  };

  (function () {
       variable.
var $ = this.jQuery || this.Zepto;

The dollar sign you are using in your regular expressions seems to be conflicting with jQuery somehow.

Support for asynchronous loading (and not packing everything in one file)

Packing everying in one file causes some problems:

  • You have to re-pack the whole thing everytime you modify a single file
  • When an error is reported during execution, it does not reports the line number and file name of the real source file
  • Multiple browserified modules can't share dependencies: they are packed independently in each module; as a result they are downloaded twice.

This is a feature request to add support (as a browserify option) for using asynchronous loading instead of packing everything in a single file.

This would solve all the problems described above: dev becomes easier, bandwidth is saved, and pages load faster (because scripts are loaded asynchronously).

Most node modules are currently using synchronous loading, but it would be possible to convert a script like that:

var http = require('http');

function doRequest() {
    var url = require('url');
    ....
}

exports.doRequest = doRequest;

To something like this:

define(['http', 'url'], function(http, url) {
    function doRequest() {
        ....
    }

    exports.doRequest = doRequest;
    return exports;
});

Or even easier (just wrap the unmodified script with a header and footer):

define(['http', 'url'], function() {

    // now that http and url modules are loaded, require('http') and require('url') can be used directly
    // no need to modify the script :-)

    var http = require('http');

    function doRequest() {
        var url = require('url');
        ....
    }

    exports.doRequest = doRequest;
    return exports;
});

Optimization

Such asynchronous modules can still be packed together in a single javascript file for reducing the number of HTTP requests in production.

This is done by just adding the module name as first argument of define (define('moduleName', ['dependency'], func)) and concatenating all modules.

Base option deprecated

Previously we could use the base option to specify a folder from which we could require any file in that folder. The functionality seems to be removed and the update broke our app.

How can we restore this functionality?

Error with escaping strings when libraries loaded in from relative path

I am building an application where I need to have my modules loaded in from a relative path.

browserify gives the following error:

          .replace(/\"./vendor/browserify/index"/g, function () {
          **browserify.js:13726Uncaught SyntaxError: Unexpected token ILLEGAL
                return JSON.stringify(libname)
            })

Because only the first quote is escaped, but not any of the following special characters in the path. The path is correct, however.

Thanks.

Watch option with persistent: true is not respected

If you specify the watch option and set persistent: true, the watch will happen only for a single change event. I believe it is because of how watch.js is coded:

    fs.watchFile(file, wopts, function (curr, prev) {
        if (curr.mtime - prev.mtime == 0) return;
        watchedFiles.forEach(function(file, i) { // <-- Unconditionally remove the watch
            fs.unwatchFile(file);
            delete watchedFiles[i];
        });

        if (opts.verbose) {
            console.log('File change detected, regenerating bundle');
        }

        opts.listen.removeListener('close', unwatch);
        opts.listen.emit('change', file);
    });

As you can see, it unconditionally removes the watch from all the files when a single event comes in. Instead, I think it should be something of this form:

    fs.watchFile(file, wopts, function (curr, prev) {
        if (curr.mtime - prev.mtime == 0) return;

        if (!wopts.persistent) {
            watchedFiles.forEach(function(file, i) {
                fs.unwatchFile(file);
                delete watchedFiles[i];
            });
        }

        if (opts.verbose) {
            console.log('File change detected, regenerating bundle');
        }

        opts.listen.removeListener('close', unwatch);
        opts.listen.emit('change', file);
    });

Any thoughts?

setTimeout doesn't properly emulate process.nextTick

setTimeout on most browsers comes with a minimum resolution of 5ms -- meaning that while setTimeout will clear the stack as expected, it will also take a minimum of 5ms to call the provided callback. In Node, this isn't the case -- the callback will be called as soon as the stack is unwound. It may be worth incorporating something like this for browsers that support postMessage so that they'll run process.nextTick as fast as expected.

process out of memory error

HI JAMES

I received a FATAL ERROR: JS Allocation failed - process out of memory error when attempting to browserify https://github.com/harthur/glossary

steps to reproduce:

npm install -g browserify
npm install glossary
browserify --require glossary -o glossary.js

there don't appear to be any crazy symlinks hiding in my node_modules

thanks!

register custom extension after bundle is created

How to add a custom extension with register. I'm using the code below:

var bundle = browserify({
    watch: true,
    require:  __dirname + '/app.js,
    mount: '/public/javascripts/app.js',
});
bundle.register('.jst', template_compiler); 
server.use(bundle);

At the time the bundle/wrap object is created the custom extension does not exist, when the following code is executed:
https://github.com/substack/node-browserify/blob/master/index.js#L89

Am I missing something?

Can't require coffee-script

I'm trying to require coffee-script in my entry file and this is the error I'm getting:

DEBUG: Error: Cannot find module "system" from directory "/node_modules/coffee-script/lib"
    at Wrap.require (/node_modules/browserify/lib/wrap.js:314:19)
    at /node_modules/browserify/lib/wrap.js:377:14
    at Array.forEach (native)
    at Wrap.require (/node_modules/browserify/lib/wrap.js:376:27)
    at /node_modules/browserify/lib/wrap.js:377:14
    at Array.forEach (native)
    at Wrap.require (/node_modules/browserify/lib/wrap.js:376:27)
    at /node_modules/browserify/lib/wrap.js:124:14
    at Array.forEach (native)
    at Wrap.addEntry (/node_modules/browserify/lib/wrap.js:122:22)

Can't quite wrap my head around what's wrong, maybe you could shed some light on it Substack?

Feature Request: add folders to require path

That would be really great to be able to bundle.addPath("commons/lib") and allow your app to utilized code from that directory without making everything in it a browserify-compatible npm module.

Description of ignore() is wrong... and Browserify is slow

The method ignore() doesn't quite do what it promises.
Current Description: Omit a file or files from being included by the AST walk to hunt down require() statements.
Actual Description: Omit a file entirely.

What about a method that does NOT walk the AST, but still wraps the file? For example, I want to include jquery-browserify in my bundle, but there is no need to walk the AST for that entire source file because there are no require() statements in it.

My problem is that browserify takes FOREVER to walk the AST for these large libraries... all that CPU wasted. Any thoughts on how we can fix this?

Error: Cannot find module 'es5-shim/package.json'

Hi! I can't run basic example on my Macbook with Snow Leopard. Am I doing something wrong?

Ravbook:zaqpki2 rav$ node -v
v0.4.1
Ravbook:zaqpki2 rav$ npm -v
0.3.18
Ravbook:zaqpki2 rav$ ls
index.html  js      server.js
Ravbook:zaqpki2 rav$ ls js
bar.js      baz.coffee  foo.js
Ravbook:zaqpki2 rav$ node server.js 
node.js:116
        throw e; // process.nextTick error, or 'error' event on first tick
        ^
        
Error: Cannot find module 'es5-shim/package.json'
    at Function._resolveFilename (module.js:290:11)
    at Function.resolve (module.js:322:19)
    at Object.modules (/Users/Rav/.node_libraries/.npm/source/0.0.3/package/index.js:6:39)
    at Function.bundle (/Users/Rav/.node_libraries/.npm/browserify/0.3.1/package/index.js:42:26)
    at /Users/Rav/.node_libraries/.npm/browserify/0.3.1/package/index.js:11:23
    at Object. (/Users/Rav/zaqpki2/server.js:5:32)
    at Module._compile (module.js:374:26)
    at Object..js (module.js:380:10)
    at Module.load (module.js:306:31)
    at Function._load (module.js:272:10)

Entry wrapper causes issues with reloads

I found that the fact that browserify wraps the entry code in a process.nextTick call causes issues with reloads. For example:

I have a page where I do 'window.MyObject = require('MyObject');'

  1. Load page the first time, everything works fine.
  2. If I hit reload, it also works fine.
  3. If I go to the URL bar and just press 'enter', everything breaks, because window.MyObject is not yet defined.

If I add console.log to the generated browser-ified script, I can see that it has executed the process.nextTick call, but not the body of it yet. It does execute it eventually when the browser has finished loading some of the other JS files.

Is there any reason it is wrapped in process.nextTick rather than just (function(){ ...})()? If I make that change manually, it works great.

Tests fail

I had to add this to the devDependencies:

    "underscore": "*",
    "chainsaw":"*",
    "dnode":"*",
    "dnode-protocol":"*",
    "jade":"*

and then re-npm link.

now that the tests are running, i am getting a failure with test/pkg/d not being found. could you add it to the repo?

support for __dirname

I use __dirname a lot, especially in test files which may be executed from a project root directory or from time to time from executing the file directly. It would be helpful to add some sort of __dirname support to browserify. Has this been considered? If not, I can fork & provide an implementation.

Cache the bundle, speed up server startups

Since the recursive require lookups, server startups are really slow
.
Could we cache the bundle in a tmpfile, so it's not computed unless any of the following

  • the entry file changes.
  • any dependency that does not have "node_modules" in resolved path changes.

Usually npm-installed dependencies won't change, maybe have some specific flag for them.

Fails when package folder name has ".js"

node-browserify is failing on this line:

https://github.com/substack/node-browserify/blob/b458e2d6d3c0a26e3aaea36443e67d2b8643acf0/index.js#L99-L100

with the following error:

Error: EISDIR, Is a directory
    at Object.readSync (fs.js:238:19)
    at Object.readFileSync (fs.js:104:19)
    at Function.wrap (/Users/colin/Projects/ffloat/lib/vendor/browserify/index.js:98:22)
    at /Users/colin/Projects/ffloat/lib/vendor/browserify/index.js:150:32
    at Array.map (native)
    at Function.wrapDir (/Users/colin/Projects/ffloat/lib/vendor/browserify/index.js:149:14)
    at Function.bundle (/Users/colin/Projects/ffloat/lib/vendor/browserify/index.js:45:32)
    at /Users/colin/Projects/ffloat/lib/vendor/browserify/index.js:10:23
    at Server.<anonymous> (/Users/colin/Projects/ffloat/server.js:98:16)
    at Server.configure (/Users/colin/Projects/ffloat/lib/vendor/express/lib/express/server.js:332:8)

When I have the Faker.js package installed. Faker.js is what they name their folder. Changing the folder name to just Faker (without the .js clears up the issue.

npm modules aren't found

The traverse module is installed, yet browserify can't seem to find it.

    browserify --require traverse -o bundle.js

    node.js:116
            throw e; // process.nextTick error, or 'error' event on first tick
            ^
    Error: Cannot find module "traverse" from directory "/Users/Alex/tmp"
        at Function.<anonymous> (/usr/local/lib/node/.npm/browserify/1.4.0/package/lib/wrap.js:314:19)
        at Function.require (/usr/local/lib/node/.npm/browserify/1.4.0/package/index.js:120:28)
        at /usr/local/lib/node/.npm/browserify/1.4.0/package/bin/cli.js:88:16
        at Array.forEach (native)
        at Object.<anonymous> (/usr/local/lib/node/.npm/browserify/1.4.0/package/bin/cli.js:82:33)
        at Module._compile (module.js:374:26)
        at Object..js (module.js:380:10)
        at Module.load (module.js:306:31)
        at Function._load (module.js:272:10)
        at Array.<anonymous> (module.js:393:10)

Problem with jQuery?

I am trying the following:

server.use(browserify({
    base: __dirname + '/js', 
    mount: '/browserify.js', 
    require: ['underscore', 'backbone', 'jquery', 'socket.io']
}));

Which fails with the following:
Error: Cannot find module 'mjsunit.runner'
at Function._resolveFilename (module.js:290:11)
at Function.resolve (module.js:322:19)
at Object.modules (/opt/local/lib/node/.npm/source/0.0.3/package/index.js:9:24)
at Function.wrap (/opt/local/lib/node/.npm/browserify/0.1.3/package/index.js:115:27)
at /opt/local/lib/node/.npm/browserify/0.1.3/package/index.js:79:31
at Array.map (native)
at Function.wrap (/opt/local/lib/node/.npm/browserify/0.1.3/package/index.js:76:27)
at /opt/local/lib/node/.npm/browserify/0.1.3/package/index.js:85:33
at Array.map (native)
at Function.wrap (/opt/local/lib/node/.npm/browserify/0.1.3/package/index.js:76:27)

Maybe because mjsunit.runner has a dot in the title of the module? I'm not sure. require('jquery') works, it is only when I go to use jquery in browserify that I receive this error.

relative require throws "can only load non-root modules"

With the removal of the base option from browserify, I am trying to update my project to utilise the require option instead.

Given the following structure...

/
    /modules
        entry.coffee
        /a
            a.coffee
        /b
            b.coffee

If entry requires ./a/a and a requires ../b/b then the following is thrown on requiring entry

Can only load non-root modules in a node_modules directory for file: /Users/pyrotechnick/webclient/modules/b/b.coffee

Similarly, when modules/b is nested within modules/a it throws the same error.

Fails to serve npm modules when package doen't have main entry.

Hi!

I'm using browserify 0.5.2 and latest nodejs that I managed to pull today, which reports version v0.5.0-pre.
When I try to serve the crypto or hash modules, browserify fails, but it works with traverse for example.
The basic difference between the modules is that the package description for traverse contains a 'main' entry pointing to './index' in the package.json, while the others don't have it. The module crypto even has two different files to be loaded: md5.js and sha.js.

By what I could follow, it can't resolve the initial files that needed be loaded, failing with the following message:

Error: EBADF, Bad file descriptor 'crypto'
at Object.openSync (fs.js:221:18)
at Object.readFileSync (fs.js:112:15)
at Object.modules (/usr/local/lib/node/.npm/source/0.0.3/package/index.js:22:24)
at Function.wrap (/usr/local/lib/node/.npm/browserify/0.5.2/package/index.js:407:27)
at /usr/local/lib/node/.npm/browserify/0.5.2/package/index.js:290:35
at Array.map (native)
at Function.wrap (/usr/local/lib/node/.npm/browserify/0.5.2/package/index.js:275:27)
at Function.bundle (/usr/local/lib/node/.npm/browserify/0.5.2/package/index.js:138:24)
at /usr/local/lib/node/.npm/browserify/0.5.2/package/index.js:22:28
at Object. (/home/malheiro/Projects/KAW-trunk/KAW/node-server.js:252:32)

encourage es5-shimming in the docs; support loading on demand?

Besides the require system, es5-shimming is needed to support a lot of node.js modules on all major browsers, without changing how code is written. Also only a few browsers support Function.prototype.bind() which is quite handy in Node.js. I'd like it if one of the first examples had shimming.

Also es5-shim.js is extra kilobytes that isn't always needed, and might make mobile sites a bit slower. How about a script that loads the whole file on demand? I wrote a draft of one, shiminy, that adds prototype.bind for ones that are close enough to what the shim enables otherwise, and loads the shim for ones that aren't. If the yepnope dependency could be removed, but the callback still available, I think it would be nice. Something like:

require('shiminy').shim(function() {
  // code that enters into using node modules here
})

...or maybe just making sure it's loaded before the entry point.

browserify broken when installed via npm

ran into a few problems with examples/simple (and the tests) after installing from npm.

  1. need to comment out #! from start of .js file (this is what nodejs loader does)
  2. browserify loaded npm shim of es5-shim not es5-shim.js (maybe best to carry es5-shim in browserify?)
  3. resolving npm's package.json gets name/package.json.js (which exports the contents of package.json, it's not valid JSON, but you can require it)

missing dependency

When I to install browserify with npm and then start it, I get this spitting at me:

Error: Cannot find module 'connect'
at Function._resolveFilename (module.js:299:11)
at Function._load (module.js:245:25)
at require (module.js:327:19)
...

If i then "npm install connect" everything is fine. I suspect adding 'connect' to browserify's dependencies would be a good thing.

uglifier

I am trying to get the uglifier working on my prod env this the code I wrote
can you tell me what's wron in it ?

var browserify  = require('browserify')
  , uglify      = require('uglify-js')

var b = browserify({
    require : ['./js/home.js']
  , mount   : "/home.js"
});

...

if (env == "production") {
        b.register(uglify); 
}

Making socket.io requirable

I've been trying to make the client-side javascript file of socket.io requirable.

Unfortunately, I've had little success.

Even simple (and not so good) methods like postpending module.exports = window.io; do not work.

Has anyone attempted to do this? Any hints or feedback on how to achieve this is greatly appreciated.

replacing bundled jQuery with public CDN jQuery

I'm trying to figure out how I can replace jQuery that has been bundled by another package (node-jadeify) with jQuery from Google Ajax APIs. I tried bundle.ignore('jquery') and bundle.ignore('jquery-1.6.1.js') but neither worked. I'm not sure what bundle.ignore does.

I also tried adding my own jquery-1.6.1.js in hopes it would get used, that was just a stub (module.exports = window.jQuery). This is closer to ideal.

I think getting one file replaced might be a common problem - if it hasn't been documented before it might be worth documenting it.

Thanks!

EventEmitter error

Not sure what this error means:

# server.js:30
var SERVER = express.createServer();

# server.js:41
SERVER.use(browserify({
    base: __dirname + '/lib', 
    mount: '/browserify.js', 
    require: [/*'underscore', 'backbone'*/]
}));

############### ############### ############## ##############

node.js:116
        throw e; // process.nextTick error, or 'error' event on first tick
        ^
TypeError: Cannot set property 'maxListeners' of undefined
    at EventEmitter.setMaxListeners (events.js:12:29)
    at /opt/local/lib/node/.npm/browserify/0.3.6/package/index.js:14:8
    at Object.<anonymous> (/Users/colin/Projects/ffloat/server.js:41:12)
    at Module._compile (module.js:374:26)
    at Object..js (module.js:380:10)
    at Module.load (module.js:306:31)
    at Function._load (module.js:272:10)
    at Array.<anonymous> (module.js:393:10)
    at EventEmitter._tickCallback (node.js:108:26)

watch doesnt work for me

i use a very simple app like this:

var express = require('express'),
browserify = require('browserify'),
app = express.createServer();

app.use(express.static(__dirname+'/public'));
app.use(express.bodyParser());
app.use(browserify({
require: [
'./client'
],
watch: true
}));

console.log('serving on :3001');
app.listen(3001);

client.js requires a few modules but nothing complicated.

whenever i change client.js or a related module and reload my web page i get the following message

Cannot find module './client'
[Break On This Error] throw new Error("Cannot find module '" + x + "'");

The only way to fix it seems to be to restart my node app which is really annoying!

Am I doing something wrong or is browserify not doing what I expect?

Getting examples working

The README is good at showing you the files. It's not so good at saying what to do. A section or article that laid the basics would be good.

Here's what I've done (and what goes boom!):

  • installed browserify with npm
  • installed connect with npm (unspecified dependency)
  • Downloaded everything from github to a subdirectory of another node project that (among other things) acts as a webserver.
  • told my node server to restart itself (just to make sure it recognized all the new stuff/files/npms)
  • went to examples
  • guessed that everything beginning with npm is an npm friendly example
  • randomly choose npm-traverse and cd'd into that dir
  • figured that node server.js needed to be done
  • opened the index.html file in a browser (in my case localhost:8000/browserify/examples/npm-traverse/index.html

The page does come up but nothing ever appears after "foo =" and no errors are generated in either FireFox or in the Console (aka command line/Terminal).

Suggestions?

Browserify doesn't look in NODE_PATH?

Browserify doesn't look in NODE_PATH?

For example, I did npm -g install jquery-browserify

require('jquery-browserify') in my client code does not work.

npm imports example not working

Hi,

I'm trying to get the npm example from your README working, and I'm having no luck. I've copied the code as is:

var connect = require('connect');
var server = connect.createServer();

server.use(connect.static(__dirname));
server.use(require('browserify')({
    mount : '/browserify.js',
    require : 'traverse',
}));

server.listen(4040);
console.log('Listening on 4040...');

Running this gives the following trace:

Error: Cannot find module "traverse" from directory "/Users/sen/Projects/Web"
    at Wrap.require (/usr/lib/node/.npm/browserify/1.2.8/package/lib/wrap.js:314:19)
    at /usr/lib/node/.npm/browserify/1.2.8/package/index.js:79:7
    at Object.<anonymous> (/Users/sen/Projects/Web/test.js:5:32)
    at Module._compile (module.js:383:26)
    at Object..js (module.js:389:10)
    at Module.load (module.js:315:31)
    at Function._load (module.js:276:12)
    at Array.<anonymous> (module.js:402:10)
    at EventEmitter._tickCallback (node.js:108:26)

Here's my list of installed packages:

npm info using [email protected]
npm info using [email protected]
[email protected]          active installed   Browser-side require() for js directories and npm modules     browser require middleware bundle npm coffee javascript
[email protected]             active installed   Wrap up expressions with a trace function while walking the AST with rice and beans on the side     trace ast walk syntax sourc
[email protected]            active installed   Build chainable fluent interfaces the easy way... with a freakin' chainsaw!     chain fluent interface monad monadic
[email protected]       installed   Unfancy JavaScript     javascript language coffeescript compiler
[email protected]       active installed   Unfancy JavaScript     javascript language coffeescript compiler
[email protected]           active installed   Compute the closest common parent for file paths     common path directory file parent root
[email protected]             active installed   High performance middleware framework     framework web middleware connect rack
[email protected]           active installed   Find all calls to require() no matter how crazily nested using a proper walk of the AST     require source analyze ast
[email protected]            active installed   ES5 as implementable on previous engines    
[email protected]                active file fs installed path walk   Higher level path and file manipulation functions.    
[email protected]              active installed   Walk a directory tree.     find walk directory recursive tree
[email protected]             active installed   Hash data structure manipulation functions     hash object convenience manipulation data structure
[email protected]          active installed   Forgiving HTML/XML/RSS Parser in JS for *both* Node and Browsers    
[email protected]               active installed   A javascript implementation of the W3C DOM     dom w3c javascript
[email protected] active installed   A web framework based on Knockout.js and Node.js    
[email protected]               active installed   Leaner CSS     css parser lesscss browser
[email protected]                active installed   A comprehensive library for mime-type mapping     util mime
[email protected]              active installed   A really tiny functional JavaScript and async flow-control library    
[email protected]                active installed   A package manager for node     package manager modules install package.json
[email protected]                 active installed   Uniqueness functions     unique uniq uniqBy nub nubBy
[email protected]                  active installed   querystring parser    
[email protected]             active http installed simple util utility   Simplified HTTP request client.    
[email protected]             active installed   A more hookable require.resolve() implementation     resolve require node module
[email protected]             active installed   RightJS server-side version    
[email protected]              active installed   The semantic version parser used by npm.    
[email protected]                 active installed   Chainable asynchronous flow control with sequential and parallel primitives and pipeline-style error handling     flow-control 
[email protected]                 installed   Chainable asynchronous flow control with sequential and parallel primitives and pipeline-style error handling     flow-control flow co
[email protected]              active installed   Grab all of the source files from a package    
[email protected]            installed   Traverse and transform objects by visiting every node on a recursive walk    
[email protected]            active installed   Traverse and transform objects by visiting every node on a recursive walk    
[email protected]          active installed   JavaScript's functional programming helper library.     util functional server client browser

I'd be very grateful if you could spot something simple I'm missing :)

Thanks,
Sean

Object.keys shim is inadequate

Hi there โ€”

I noticed that the Object.keys shim used by browserify has an unfiltered for-in loop, meaning that it is not compatible with the standard method, which returns only the keys of the object's own properties. I was going to fix it and offer a pull request, but then it occurred to me that the fix would require a shim for Object.prototype.hasOwnProperty, and so I decided to tell you guys about it instead, and maybe after some discussion we can fix it.

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/keys

Regards,
Chris

Browserify does not reload source files

Thank you for creating Browserify! I have been using it in my development workflow, but unfortunately quite quickly stumbled into the fact that Browserify loads and concatenates the source files only once (when the server starts). This is unfortunate within a development process. I would love to see Browserify be capable of reloading source files on each request.

To do so, I have moved the following line into the request function, which will make it reload the source files whenever a request is handled.

var src = exports.bundle(opts);

Of course, this is not a perfect solution, because bundle() uses synchronous IO. But before I start making more invasive changes I wanted to bring this to your attention. Is this use case part of Browserify's goals? Do you have a solution in mind? I would be happy to contribute.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.