其他分享
首页 > 其他分享> > 3_CommonJS-Browserify模块化教程

3_CommonJS-Browserify模块化教程

作者:互联网

CommonJS 浏览器端模块化教程

1. 创建项目结构

|-js
  |-dist //生成编译完js的目录
  |-src //源码所在的目录(我们编写的、没经过工具处理的代码,叫做源码)
    |-module1.js
    |-module2.js
    |-module3.js
    |-main.js
|-index.html

2. 模块化编码

3. 下载 browserify

4. 执行处理命令

5. 页面使用引入:

<script type="text/javascript" src="js/dist/bundle.js"></script> 

标签:CommonJS,uniq,console,模块化,module3,module2,js,foo,Browserify
来源: https://www.cnblogs.com/fsg6/p/13143351.html