This is a simple example that shows the usage of CommonJS.
The three files example.js
, increment.js
and math.js
form a dependency chain. They use require(dependency)
to declare dependencies.
You can see the output file that webpack creates by bundling them together in one file. Keep in mind that webpack add comments to make reading this file easier. These comments are removed when minimizing the file.
You can also see the info messages that webpack prints to console (for both normal and minimized build).
_{{example.js}}_
_{{increment.js}}_
_{{math.js}}_
_{{dist/output.js}}_
_{{stdout}}_
_{{production:stdout}}_