码迷,mamicode.com
首页 > Web开发 > 详细

webpack.js 复习笔记

时间:2017-04-18 21:24:07      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:code   function   png   img   .com   blog   color   web   ima   

1、最简单的命令

hello.js

function hello(str){
  alert(str)
}

 

webpack hello.js hello.bundl.js  //即把hello.js 压缩成 hello.bundle.js

技术分享

 

2、requrie

hello.js

require(‘./world.js‘)
function hello(str){
  alert(str)
}

world.js

function world(){
  return {
    
  }
}

 webpack hello.js hello.bundle.js

技术分享

 

webpack.js 复习笔记

标签:code   function   png   img   .com   blog   color   web   ima   

原文地址:http://www.cnblogs.com/xudy/p/6730465.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!