用法 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’]