babel-plugin-await-add-trycatch

1.0.1 • Public • Published

babel-plugin-await-add-trycatch

一个自动给 async/await 函数添加 try/catch 的 babel 插件

安装

npm install --save-dev babel-plugin-await-add-trycatch

使用说明

babel.config.js 配置如下

module.exports = {
  plugins: [
    [
      require('babel-plugin-await-add-trycatch'),
      {
        exclude: ['build'], // 默认值 ['node_modules']
        include: ['main.js'], // 默认值 []
        customLog: 'My customLog' // 默认值 'Error'
      }
    ]
  ]
};

demo

原始代码:

async function fn() {
  await new Promise((resolve, reject) => reject('报错'));
  await new Promise((resolve) => resolve(1));
  console.log('do something...');
}
fn();

使用插件转化后的代码:

async function fn() {
  try {
    await new Promise((resolve, reject) => reject('报错'));
    await new Promise((resolve) => resolve(1));
    console.log('do something...');
  } catch (e) {
    console.log('\nfilePath: E:\\myapp\\src\\main.js\nfuncName: fn\nError:', e);
  }
}
fn();

打印的报错信息:

Image text

Package Sidebar

Install

npm i babel-plugin-await-add-trycatch

Weekly Downloads

3

Version

1.0.1

License

ISC

Unpacked Size

49 kB

Total Files

5

Last publish

Collaborators

  • maxinyuan