编写一个Babel插件

2023-08-21  本文已影响0人  如果俞天阳会飞

搭建一个rollup

标准规范babel-plugin-xxxxx 开头

npm init

npm i rollup @rollup/plugin-babel

npm i decimal.js -S
{
  "name": "babel-plugin-decimal",
  "version": "1.0.1",
  "description": "",
  "main": "lib/index.js",
  "type": "module",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "rollup -c"
  },
  "author": "",
  "license": "ISC",
  "files": [
    "lib/*",
    "src/*"
  ],
  "devDependencies": {
    "@babel/preset-env": "^7.22.10",
    "@rollup/plugin-babel": "^6.0.3",
    "@babel/core": "^7.22.10",
    "rollup": "^3.28.0"
  },
  "peerDependencies": {
    "@babel/core": "^7.22.8",
    "@babel/preset-env": "^7.22.7"
  },
  "dependencies": {
    "decimal.js": "^10.4.3"
  }
}

import babel from '@rollup/plugin-babel';


export default {
  input: 'src/index.js',
  output: {
    // name: 'decimal',
    file: 'lib/index.js',
    format: 'cjs'
  },
  plugins: [
    babel({
      babelHelpers: 'bundled',
      presets: [['@babel/preset-env', {
        "targets": {
          "edge": '17',
          "firefox": '60',
          "chrome": '67',
          "safari": '11.1'
        }
      }]]
    })
  ]
}

什么是抽象语法树(AST)?

我们可以借助一个网站,来一睹抽象语法树的真容~ https://astexplorer.net/

image.png

其实抽象语法树的节点类型有很多:

其实,我们平时在 webpack 开发时会接触到一系列的插件,他们的功能比如有

其实他们的原理整体上都是一致的,分为三步:

但是第一步和第三步我们不需要管,我们只需要完成第二步中的增删改查操作即可

注意点:在第二步中,babel 会对抽象语法树进行深度遍历,遍历到目标节点后,又会重新回到上层节点去重新遍历下一个目标节点,所以一个节点会被遍历两次,一来一回 进去是 enter 回去是 exit

image.png

插件基本代码结构

export default function ({ template, types: t }) {

  return {
    visitor: {
      Program: {
        exit: function (path) {
        }
      },
      BinaryExpression: {
        exit: function (path) {
        }
      }
    }
  }
}

开发一个 babel 插件,文件必须默认返回一个函数,接收一个对象参数,里面有个属性我们需要用到

插件完全实现

const DECIMAL = 'Decimal';

const OPERATIONS_MAP = {
  '+': 'add',
  '-': 'sub',
  '*': 'mul',
  '/': 'div',
}

const OPERATIONS_KEY = Object.keys(OPERATIONS_MAP)


export default function ({template: template}) {
  const requireDecimal = template(`const ${DECIMAL}=require('decimal.js')`);
  //  babel-template:可以通过字符串的形式生成一个ast
  // 将运算表达式转换为decimal函数的节点模板
  const temp = template(`new ${DECIMAL}(LEFT).OPERATION(RIGHT).toNumber()`)
  return {
    visitor: {
      Program: {
        exit: function (path) {
          // 调用方法,往子节点body
          // 中插入 const Decimal = require('decimal.js')
          path.unshiftContainer('body', requireDecimal())
        }
      },
      BinaryExpression: {
        exit: function (path) {
          const operator = path.node.operator;
          if (OPERATIONS_KEY.includes(operator)) {
            // 调用方法替换节点
            path.replaceWith(
             // 传入 operator left right
              temp({
                LEFT: path.node.left,
                RIGHT: path.node.right,
                OPERATION: OPERATIONS_MAP[operator]
              })
            )
          }
        }
      }
    }
  }
}

打包 发布NPM

当开发完成后,我们先 npm run build进行打包

然后运行 npm publish 发布到 NPM 上

项目使用

首先安装 babel-plugin-decimal

npm i babel-plugin-decimal

只需要在项目中的 .babelrc 或者 babel.config.js 中加入 babel-plugin-decimal即可

{
 "presets": ["@babel/preset-env"],
  "plugins": ["babel-plugin-sx-accuracy"]
}

测试

1692693665689.jpg
上一篇下一篇

猜你喜欢

热点阅读