npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

babel-plugin-try-catch-auto

v2.4.6

Published

auto wrap try catch for function body

Downloads

27

Readme

babel-plugin-try-catch-auto

介绍

babel插件,js文件经过babel编译时会自动在function 内部嵌入try catch代码片段,用于捕获函数体中的异常,并上报异常数据到服务器。 onerrorreact componentDidCatch不能捕获异步方法中的异常而开开发该插件


安装

cnpm i -D babel-plugin-try-catch-auto
  • 如果你还没有安装 npm,可通过以下方式进行 安装
  • 安装cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org

使用

1. 捕获异常不向外继续抛出配置

// .babelrc文件内配置
{
    "presets": [
        ["env", {
            "modules": false
        }],
        "react",
        "stage-2"
    ],
    "plugins": [
        // 如果没有引入antd,可忽略 import 插件配置,import插件仅供示例参考
        [
            "import",
            {
                "libraryName": "antd",
                "libraryDirectory": "lib",
                "style": "css"
            }
        ],
        [
            "try-catch-auto", 
            {
                "throwError": false // throwError = false 时,捕获异常不向外继续抛出
            }
        ]
    ]
}

2. 捕获异常继续向外抛出配置

// .babelrc文件内配置
{
    "presets": [
        ["env", {
            "modules": false
        }],
        "react",
        "stage-2"
    ],
    "plugins": [
        // 如果没有引入antd,可忽略 import 插件配置,import插件仅供示例参考
        [
            "import",
            {
                "libraryName": "antd",
                "libraryDirectory": "lib",
                "style": "css"
            }
        ],
        "try-catch-auto"
    ]
}

3. 配置白名单配置,白名单方法不使用try catch代码块包裹

// .babelrc文件内配置
{
    "presets": [
        ["env", {
            "modules": false
        }],
        "react",
        "stage-2"
    ],
    "plugins": [
        // 如果没有引入antd,可忽略 import 插件配置,import插件仅供示例参考
        [
            "import",
            {
                "libraryName": "antd",
                "libraryDirectory": "lib",
                "style": "css"
            }
        ],
        [
            "try-catch-auto", 
            {
                "whiteList": ["example"] // 数组类型,元素为方法名
            }
        ]
    ]
}

Changelog

2.4.0

  1. 优化catch上报参数
  2. 增加throwError参数配置

2.4.1

  1. 替换函数节点为Function

2.4.2

  1. 对添加try catch的模块增加严格审核,减少不必要的try catch
  2. error.message中增加了方法名方法行号起始位置的信息,具体在message结尾以:间隔
  3. 补充了属性方法中的错误捕获

2.4.3

  1. 修复bug
  2. 增加白名单函数

2.4.4

  1. 优化catch时机,减少不必要的catch

2.4.5

  1. 增加方法名白名单配置

2.4.6

  1. 去掉对方法直接return的处理