Skip to navigation
How to use javascript require for my client based javascript
20.09.18
Browsers don't have the require method defined, but Node.js does. With Browserify you can write code that uses require in the same way that you would use it in Node. Here is a tutorial on how to use Browserify on the command line to bundle up a simple file called main.js along with all of its dependencies: main.js var unique = require('uniq'); var data = [1, 2, 2, 3, 4, 5, 5, 5, 6]; console.log(unique(data)); Install the uniq module with npm: npm install uniq Now recursively bundle up all the required modules starting at main.js into a single file called bundle.js with the browserify command: browserify main.js -o bundle.js Browserify parses the AST for require() calls to traverse the entire dependency graph of your project. Drop a single
http://browserify.org/
Reply
Anonymous
Information Epoch 1732653509
When in doubt, use brute force.
Home
Notebook
Contact us