Select from following answers:- browserify is a tool for compiling node-flavored commonjs modules for the browser

- browserify is a Express Framework for compiling node-flavored commonjs modules for the browser
- browserify is a browser for compiling node-flavored commonjs modules for the browser
- All the above
- All Above
browserify is a tool for compiling node-flavored commonjs modules for the browser. We write our modules in separate files, exporting external methods and properties using the module.exports and exports variables. If we require other modules, we do so by using require function. The command line for browserify is
npm install browserify -g
Browserify uses the term entry file(s)from where it start s reading the dependency graph, goes thru the graph pathand finally produces the output which is referred as bundle.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator