Skip to content

一个自动为 await 注入 catch 语句的 webpack loader

License

Notifications You must be signed in to change notification settings

zhuguibiao/loader-await-catch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

loader-await-catch

一个自动为 await 注入 catch 语句的 webpack loader

开发中或多或少需要对 await 进行 catch 操作,而这些操作则会让你项目中代码变的臃肿,所以衍生出来 loader-await-catch 这么一个 webpack loader 对你项目中的 await 自动注入 catch 操作的代码。

Install

npm i loader-await-catch -D

or

yarn add loader-await-catch -D

Usage

// webpack.config.js

module: {
  rules: [
    {
      test: /\.js$/,
      use: {
        loader: 'loader-await-catch',
        option: {
          callback: (err)=>{
            console.log(err)
          },
        }
      }
    }
  ]
}

About

一个自动为 await 注入 catch 语句的 webpack loader

Resources

License

Stars

Watchers

Forks

Packages

No packages published