使用 Webpack 與 Babel 配置 ES6 開發環境

使用 Webpack 與 Babel 配置 ES6 開發環境

安裝 Webpack

安裝:javascript

# 本地安裝
$ npm install --save-dev webpack webpack-cli

# 全局安裝
$ npm install -g webpack webpack-cli

在項目根目錄下新建一個配置文件—— webpack.config.js 文件:java

const path = require('path');

module.exports = {
  mode: 'none',
  entry: './src/index.js',
  output: {
    filename: 'bundle.js',
    path: path.resolve(__dirname, 'dist')
  }
}

在 src 目錄下新建 a.js 文件:node

export const isNull = val => val === null

export const unique = arr => [...new Set(arr)]

在 src 目錄下新建 index.js 文件:webpack

import { isNull, unique } from './a.js'

const arr = [1, 1, 2, 3]

console.log(unique(arr))
console.log(isNull(arr))

執行編譯打包命令,完成後打開 bundle.js 文件發現 isNull 和 unique 兩個函數沒有被編譯,和 webpack 官方說法一致:webpack 默認支持 ES6 模塊語法,要編譯 ES6 代碼依然須要 babel 編譯器。git

安裝配置 Babel 編譯器

使用 Babel 必須先安裝 @babel/core 和 @babel/preset-env 兩個模塊,其中 @babel/core 是 Babel 的核心存在,Babel 的核心 api 都在這個模塊裏面,好比:transform。而 @babel/preset-env 是一個智能預設,容許您使用最新的 JavaScript,而無需微觀管理您的目標環境須要哪些語法轉換(以及可選的瀏覽器polyfill)。由於這裏使用的打包工具是 Webpack,因此還須要安裝 babel-loader 插件。github

安裝:web

$ npm install --save-dev @babel/core @babel/preset-env babel-loader

新建 .babelrc 文件:npm

{
  "presets": [
    "@babel/preset-env"
  ]
}

修改 webpack 配置文件(webpack.config.js):json

const path = require('path');

module.exports = {
  mode: 'none',
  entry: './src/index.js',
  output: {
    filename: 'bundle.js',
    path: path.resolve(__dirname, 'dist')
  },
  module: {
    rules: [
      {
        test: /\.js$/,
          loader: 'babel-loader',
          exclude: /node_modules/
      }
    ]
  }
}

因爲 babel 默認只轉換 ES6 新語法,不轉換新的 API,如:Set、Map、Promise等,因此須要安裝 @babel/polyfill 轉換新 API。安裝 @babel/plugin-transform-runtime 優化代碼,@babel/plugin-transform-runtime 是一個能夠重複使用 Babel 注入的幫助程序代碼來節省代碼的插件。api

安裝 @babel/polyfill、@babel/plugin-transform-runtime 兩個插件:

$ npm install --save-dev @babel/polyfill @babel/plugin-transform-runtime

修改 .babelrc 配置文件:

{
  "presets": [
    ["@babel/preset-env", {
      "useBuiltIns": "usage", // 在每一個文件中使用polyfill時,爲polyfill添加特定導入。利用捆綁器只加載一次相同的polyfill。
      "modules": false // 啓用將ES6模塊語法轉換爲其餘模塊類型,設置爲false不會轉換模塊。
    }]
  ],
  "plugins": [
    ["@babel/plugin-transform-runtime", {
      "helpers": false
    }]
  ]
}

最後,配置兼容的瀏覽器環境。在 .babelrc 配置文件中設置 targets 屬性:

{
  "presets": [
    ["@babel/preset-env", {
      "useBuiltIns": "usage",
      "modules": false,
      "targets": {
        "browsers": "last 2 versions, not ie <= 9"
      }
    }]
  ],
  "plugins": [
    ["@babel/plugin-transform-runtime", {
      "helpers": false
    }]
  ]
}

執行命令編譯代碼,完成後檢查 bundle.js 文件,是否成功轉換新 API 。若是發現如下代碼即說明轉換成功:

// 23.2 Set Objects
module.exports = __webpack_require__(80)(SET, function (get) {
  return function Set() { return get(this, arguments.length > 0 ? arguments[0] : undefined); };
}, {
  // 23.2.3.1 Set.prototype.add(value)
  add: function add(value) {
    return strong.def(validate(this, SET), value = value === 0 ? 0 : value, value);
  }
}, strong);

其餘關於 js 壓縮和 Webpack 啓用 tree shaking 功能的設置本文不在贅述。

配置文件詳情概覽

package.json 文件:

{
  "name": "demo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "dev": "webpack"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@babel/core": "^7.3.4",
    "@babel/plugin-transform-runtime": "^7.3.4",
    "@babel/polyfill": "^7.2.5",
    "@babel/preset-env": "^7.3.4",
    "babel-loader": "^8.0.5",
    "webpack": "^4.29.6",
    "webpack-cli": "^3.2.3"
  }
}

webpack.config.js 文件:

const path = require('path');

module.exports = {
  mode: 'none',
  entry: './src/index.js',
  output: {
    filename: 'bundle.js',
    path: path.resolve(__dirname, 'dist')
  },
  module: {
    rules: [
      {
        test: /\.js$/,
          loader: 'babel-loader',
          exclude: /node_modules/
      }
    ]
  }
}

.babelrc 文件:

{
  "presets": [
    ["@babel/preset-env", {
      "useBuiltIns": "usage",
      "modules": false,
      "targets": {
        "browsers": "last 2 versions, not ie <= 9"
      }
    }]
  ],
  "plugins": [
    ["@babel/plugin-transform-runtime", {
      "helpers": false
    }]
  ]
}

符錄

usuallyjs 項目是本人最近建設的開源項目,歡迎感興趣的同行交流。

usuallyjs: https://github.com/JofunLiang/usuallyjs

相關文章
相關標籤/搜索