We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Installation is via npm:
npm install webpack -g
Give Webpack an entry point and an output file:
webpack ./app.js app.bundle.js
We can define modules in JavaScript using the CommonJS syntax, as for Node:
cats.js
var cats = ['dave', 'henry', 'martha']; module.exports = cats;
app.js
cats = require('./cats.js'); console.log(cats);
Recommended reading: Webpack your bags by Maxime Fabre - a very good introduction on how to setup a real-world project using Webpack.