Browserify快速入门指南
浏览器演示检出Browserify快速开始:
1. 安装 Browserify
在终端中输入以下命令,进行全局安装:npm install -g browserify
2. 构建bundle.js
使用以下命令生成bundle.js文件:browserify main.js -o bundle.js
3. 查看index.html
使用浏览器打开index.html,查看效果。
### 可选安装
使用 watchify,实时监测文件变动,自动更新bundle.js。
安装watchify并在main.js修改时更新:npm install -g watchify
watchify main.js -o bundle.js
哇!现在,你已经掌握了Browserify的基础用法!
用户评论