This page lists various tools that either use browserify or add features to it.
There are two main ways that people like to recompile browserify bundles automatically as the files change. One way is to generate bundles on the fly attached to an existing web server. Another way is to run a standalone command or module that will only watch for changes and write to disk with the latest output.
*.js-files simultaneously (via watchify)These tools fit somewhere into the pipeline of module-deps | insert-module-globals | browser-pack that browserify sets up internally or deal with module-deps json output or input directly. You can use these tools to build your own browserify more suited to your specific needs.
Buffer, __filename, __dirname, and global
require('string') to require(n) in a module-deps stream to save bytesThese tools accept a bundle file generated by browserify or browser-pack as input.
.js.map filerequire() calls with _dereq_() so that bundles can be required by browserify or similar static analysis tools again. This module was used in browserify --standalone pre v5.require('some/long/path') => require(1)
require() calls which reference stylesheets and bundle them into a separate CSS bundle.