babel-plugin-async-add-trycatch
v1.0.2
Published
Babel plugin helps automatically add try catch when async await; 自动给async await 添加try catch
Downloads
5
Maintainers
Readme
babel-plugin-async-add-trycatch
一个自动给 async/await 函数添加 try/catch 的 babel 插件
安装
npm install --save-dev babel-plugin-async-add-trycatch
使用说明
babel.config.js 配置如下
module.exports = {
plugins: [
[
require('babel-plugin-async-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();