用法 AMD 模組示例

建立資料夾。在命令列中開啟它。跑 npm install webpack -g。建立 2 個檔案:

cats.js:

define(function(){
    return ['dave', 'henry', 'martha'];
});

app.js

require(['./cats'],function(cats){
    console.log(cats);
})

在命令列中執行:

webpack ./app.js app.bundle.js

現在在資料夾中將檔案:app.bundle.js

建立 index.html 檔案:

<html>
    <body>
        <script src='app.bundle.js' type="text/javascript"></script>
    </body>
</html>

在瀏覽器中開啟它並在控制檯中檢視結果:

[‘dave’,‘henry’,‘martha’]