webpack的使用

1、全局安装webpack

$ cnpm install -g webpack

2、新建一个文件夹,作为项目的文件夹

3、在这个文件夹下,初始化webpack

$ npm init

最后再Ctrl+C跳出

4、在文件夹里安装webpack

$ cnpm install webpack --save-dev

 5、新建一个hello.js文件

function hello (str) {
    alert(str);
}

6、将hello.js文件打包hello.bundle.js

$ webpack hello.js hello.bundle.js

 

posted @ 2017-06-01 22:08  HongMaJu  阅读(198)  评论(0编辑  收藏  举报