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

@bluesky_tl/logger

v0.0.1

Published

js caught and report error

Downloads

1

Readme

Ohbug

Build Status codecov npm GitHub

推荐使用完全重写后的 ohbug,本项目已经废弃

简介

通过监听/主动捕获 error 以及性能信息,获取相关信息后执行特定操作(数据上传记录等)。

功能

错误捕获

可捕获的异常类型包括:

  1. JavaScript执行错误
  2. 资源加载错误
  3. HTTP请求错误
  4. 未catch处理的Promise错误

性能监控

可监控页面加载各个阶段所用时间、页面资源加载时间。

信息将于页面 load 事件时上报

错误上报

上报方法可自定义,上报时机分为:

  1. 发生错误时立即上报错误
  2. 页面卸载前上报。

性能信息上报

页面加载完成后上报

Todo

  • [x] 捕获websocket错误
  • [ ] 设置采集率
  • [ ] sourcemap定位压缩代码具体错误位置
  • [x] 页面性能监控
  • [ ] 页面HTTP请求性能监控
  • [x] 页面资源加载性能监控

原理

  • 通过 window.addEventListener,可捕获 JavaScript 执行错误,资源加载错误,未catch处理的Promise错误
  • 通过改写 XMLHttpRequest / fetch 实现监听 HTTP 请求错误
  • 页面性能时间 image

使用

script mode

<script src="https://unpkg.com/ohbug"></script>

<script>
  Ohbug.init({
    report(errorList) {
      // 上传错误至服务端
    }
  })
</script>

module mode (React)

1.安装

npm install ohbug --save

如果想用 yarn

yarn add ohbug

2.在 根组件文件中添加

import Ohbug from 'ohbug'

class Root extends React.Component {
  componentDidMount() {
    Ohbug.init({
      report(errorList) {
        // 上传错误至服务端
      }
    })
  }
}

主动捕获上报

针对一些特殊需求的错误 使用主动捕获(使用装饰器)

例如在 react

import { caughtError } from 'ohbug';

class Test extends React.Component {
  @caughtError // success
  send() {
    // ...
  }
}

请注意箭头函数使用 caughtError 捕获不到错误信息,例如

import { caughtError } from 'ohbug';

class Test extends React.Component {
  @caughtError // fail
  send = () => {
    // ...
  }
}

针对一些不能使用装饰器或自定义信息使用 reportInfo

import { reportInfo } from 'ohbug';

class Test extends React.Component {
  send() {
    try {
      // ...
    } catch(e) {
      reportInfo(e)
    }
  }
}
import { reportInfo } from 'ohbug';

class Test extends React.Component {
  hello() {
    reportInfo('hello')
  }
}

配置

使用方式

const others = {
  id: window.sessionStorage.getItem('XXX_ID'),
  nick: window.sessionStorage.getItem('XXX_NICK'),
};
function report(data) {
  ajax('url', JSON.stringify(data))
}
Ohbug.init({
  report,
  others,
});

| key | description | type | default | | :------: | :------: | :------: | :------: | | report | 上传函数 | function | null | | others | 自定义信息 | object | null | | enabledDev | 开发环境下上传 (默认查看当前 url 中是否含有 127.0.0.1 / localhost ,若传入数组则会遍历数组内每一项 url 与当前 url 是否匹配,匹配则是开发环境) | boolean / string[] | false | | | 以下为错误信息上报相关配置 | | | | error | 是否上报错误信息 | boolean | true | | maxError | 发送日志请求连续出错的最大次数 超过则不再发送请求 | number | 10 | | mode | 短信发送模式 ('immediately': 立即发送 'beforeunload': 页面注销前发送) | string | 'immediately' | | delay | 错误处理间隔时间 | number | 2000 | | ignore | 忽略指定错误 目前只支持忽略 HTTP 请求错误 | array | [] | | | 以下为性能信息上报相关配置 | | | | performance | 是否上报性能信息 | boolean | false | | include | 收集指定用户的特定信息 | function | null |

注意

mode 属性

设置为 immediately 时,delay 时间内发生的错误将会统一收集并上报

设置为 beforeunload 时,会在卸载当前页面时上报,可能存在用户关闭或切换页面导致漏报问题。

常见的解决方案为发送同步 ajax 请求(会导致页面卡顿) 或 使用 navigator.sendBeacon() 异步上报(不支持 GET),两种情况都存在弊端 实际生产环境视情况而定。

function report(data) {
  var xhr = new XMLHttpRequest();
  xhr.open("POST", "/log", false); // false 表示同步
  xhr.send(data);
}
Ohbug.init({
  report,
});
function report(data) {
  navigator.sendBeacon("/log", data); // 默认发送 POST 请求
}
Ohbug.init({
  report,
});

ignore 属性

Ohbug 在捕获错误时会忽略 ignore 数组内的 url。

使用场景:

  1. 可能频繁出错或不需上报的api。
  2. 由于上报请求完全自定义,一旦上报请求发生错误,Ohbug无法判断错误来源,会导致无限循环上报,此时将上报的 url 添加入 ignore 数组内,忽略上报请求的错误。

include 属性

Ohbug 会调用传入函数, 当使用 reportInfo 时只捕获指定的信息.

配置:

function include() {
  if (window.user === 'frank') return true
  return false
}
Ohbug.init({
  include,
})

使用 reportInfo :

import { reportInfo } from 'ohbug';

class Test extends React.Component {
  hello() {
    reportInfo('hello', true) // 只有当前用户为 `frank` 时, 才会上报信息 'hello'
  }
}

错误类型

| type | description | | :------: | :------: | | caughtError | 调用 caughtError 装饰器主动捕获的错误 | | uncaughtError | 意料之外的错误 | | resourceError | 资源加载错误 | | grammarError | 语法错误 | | promiseError | promise 错误 | | ajaxError | ajax 错误 | | fetchError | fetch 错误 | | websocketError | websocket 错误 | | reportInfo | 主动上报的信息 |

性能信息类型

| type | description | | :------: | :------: | | redirect | 重定向耗时 | | cache | 应用缓存耗时 | | dns | DNS解析耗时 | | tcp | TCP链接耗时 | | secureConnection | 安全链接耗时 | | request | request耗时 | | first | 白屏/首屏渲染(跳转到response之间)耗时 | | unload | unload耗时 | | network | 总体网络交互(开始跳转到服务器资源下载完成)耗时 | | domInteractive | DOM结构解析(未加载图片 样式 等)耗时 | | script | 脚本执行耗时 | | dom | DOM加载(不包括结构解析)耗时 | | onload | onload耗时 | | total | 合计耗时 |

License

MIT

Copyright (c) 2018 陈月半