使用webpack+babel来"编译"JS代码

常规的引用外部JS文件是 
在es2015中,并不需要这样。我们使用import…from语法

示例:我们在ui.js里定义2个变量

let name = "jack";
let age = 18;
exprot{name,age}; //导出这2个变量

然后在index.js引入:

import{name,age} from "./ui.js";
console.log(name);

然后我们”编译”index.js:

$ babel ./es2015/index.js --out-file ./es2015/index-build.js

编译之后的index-build.js:

"use strict";

var _ui = require("./ui.js");

console.log(_ui.name);

这时我们发现 
babel把引用部分编译成了require,而require在我们当前的es5中不能运行的。 
这时我们就要安装一个新工具webpack(最火的一款模块加载器简打包工具,它能把各种资源,例如js含”JSX”、coffee、样式含”less/sass”、图片等)

如何安装webpack?

$ sudo npm install -g webpack

我们用nodejs的语法重写ui.js

var name = "jack";
exports.abc = name;

在index.js里:

var m = require("./ui.js");
console.log(m.abc);

nodejs是无法在浏览器运行的,所以我们就要借助webpack来打包一下:

$ webpack   ./es2015/index.js ./es2015/index-webpack.js
  • 我们在浏览器测试,控制器打印了”jack”,html代码:
<!DOCTYPE html>
<html>
<head>
    <title>es2105的写法</title>
    <script type="text/javascript" src="es2015/index-webpack.js"></script>
</head>
<body>

</body>
</html>

webpack打包之后的index-webpack.js我们也可以看一看: 

/******/ (function(modules) { // webpackBootstrap
/******/    // The module cache
/******/    var installedModules = {};

/******/    // The require function
/******/    function __webpack_require__(moduleId) {

/******/        // Check if module is in cache
/******/        if(installedModules[moduleId])
/******/            return installedModules[moduleId].exports;

/******/        // Create a new module (and put it into the cache)
/******/        var module = installedModules[moduleId] = {
/******/            exports: {},
/******/            id: moduleId,
/******/            loaded: false
/******/        };

/******/        // Execute the module function
/******/        modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);

/******/        // Flag the module as loaded
/******/        module.loaded = true;

/******/        // Return the exports of the module
/******/        return module.exports;
/******/    }


/******/    // expose the modules object (__webpack_modules__)
/******/    __webpack_require__.m = modules;

/******/    // expose the module cache
/******/    __webpack_require__.c = installedModules;

/******/    // __webpack_public_path__
/******/    __webpack_require__.p = "";

/******/    // Load entry module and return exports
/******/    return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {

    var m = __webpack_require__(1);
    console.log(m.abc);

/***/ },
/* 1 */
/***/ function(module, exports) {

    var name = "jack";
    exports.abc = name;

/***/ }
/******/ ]);

 

如何结合babel对我们的es2015代码进行webpack打包 

webpack可以在项目根目录下创建一个配置文件,叫做webpack.config.js 
 

另外还需要安装一个babel-loader

$ npm install babel-loader
  • 1

安装完之后,多了 
这里写图片描述 
然后我们就可以执行执行 webpack

  • Entry:入口文件, 可以是一个或多个入口文件。在多页面应用中,每个入口文件对应一个页面,比如我们经常有前台页面和后台管理页,它们分别对应两个入口;
  • Output:输出文件,文件名中可以带[hash]或[chunkhash], hash是经常要用到的,当生成的文件有变化时会在文件名后跟上hash串,可以避免客户端缓存;
  • Loaders:加载器,本质上是函数,接收一个资源文件返回新的文件
  • Plugins:插件
  • Externals:引入外部类库,使用external来排除js文件被打包入bundle

作者:Shannon_JS
链接:https://www.jianshu.com/p/ab74010f4f6c
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

下面我们来演示: 
ui.js

index.js

import {name,age} from "./ui.js";
console.log(name);
console.log(age);

webpack.config.js

module.exports = {
    // configuration
    entry: "./es2015/index.js", //代表入口(总)文件,可以写多个
    output: {
        path: "./es2015/", //输出文件夹
        filename: "index-webpack.js" //最终打包生成的文件名
    },
    module: {
        loaders: [
            {
                test: /\.js|jsx$/, //是一个正则,代表js或者jsx后缀的文件要使用下面的loader
                loader: "babel",
                query: {presets: ['es2015']}
            }

        ]
    }
};

这样我们就可以利用webpack打包es2015的js了,终端执行webpack后,es2015文件夹下生成index-webpack.js,然后我们在html中引入:

<!DOCTYPE html>
<html>
<head>
    <title>es2105的写法</title>
    <script type="text/javascript" src="es2015/index-webpack.js"></script>
</head>
<body>

</body>
</html>

我们分析index.js可以知道,我们是要在控制台打印2个变量。我们到浏览器测试一下: 
这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值