Browserify Example

In this example, I started with an example.js, following conventions defined by CommonJS (by using require() to include the col.js lib).

Then, I ran browserify on it to create example-browserified.js using this command:

browserify example.js -o example-browserified.js

Return