用法 CommonJS 模組示例
建立資料夾。在命令列中開啟它。跑 npm install webpack -g
。建立 2 個檔案:
cats.js:
var cats = ['dave', 'henry', 'martha'];
module.exports = cats;
app.js
cats = require('./cats.js');
console.log(cats);
在命令列中執行:webpack ./app.js app.bundle.js
現在在資料夾中將檔案 app.bundle.js
。你可以將其包含在 index.html 頁面中,在瀏覽器中開啟它並在控制檯中檢視結果。
但更快的方法是在命令列中執行:node app.bundle.js
並立即在控制檯中檢視結果:
[‘dave’,‘henry’,‘martha’]