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

sniper-web

v1.1.13

Published

<div align="center">

Downloads

30

Readme

Sniper-SDK

前端监控 SDK 【毕设项目,还在迭代】

version license size

📦 Installation

npm i sniper-web

🎯 Quickstart

在项目的顶层

const webmonitor = new WebMonitor({
  appid: "appid",
});
// 只有 appid 是必填项

webmonitor.start();

⭐️ 支持特性

  • 错误捕获:代码报错、资源加载报错、接口请求报错
  • 性能数据:FCP、LCP、CLS、TTFB、FID、LongTask
  • 网络测速:接口测速、资源测速
  • 用户行为:跳出率、PV
  • 页面崩溃:基于 worker 的心跳检测
  • 个性化指标:Long Task、Memory 页面内存、首屏加载时间
  • 日志容灾:localstorage 备份
  • 插件机制:所有特性都可以自定义选择
  • 支持的 Web 框架:React

TODO:

  • 日志去除重复
  • Fetch 监控

🎲 具体配置项

type Options = {
  appid: string;
  waitUidFilled: boolean;
  longtask_time?: number;
  sample_rate?: number;
  plugins?: Plugin[];
  threshold?: number;
  endpoint?: string;
  method: "post" | "get";
  senderType: "xhr" | "beacon";
};

| 参数名称 | 作用 | 默认值 | | ------------- | --------------------------- | ----------------------------- | | appid | 应用标识 | / 【必填项】 | | waitUidFilled | 是否等待 uid 获取后统一上报 | false | | longtask_time | longtask_time | 50(ms) | | sample_rate | 采样频率, 要求 0-1 之间 | 0.5 | | plugins | 插件列表 | 下面说明的全部插件 | | threshold | 统一日志上报数量 | 20 | | endpoint | 日志请求地址 | https://bdul0j.laf.dev/logger | | method | 日志上报方法 | post | | senderType | 日志上报工具 | xhr |

已经内置实现的插件

| 插件名称 | 作用 | 注意事项 | | ------------------ | ------------------ | ------------------------------------------------------------------- | | RrwebPlugin | 现场录制插件 | 取消配置后,将不再上传用户行为录像, 适合有安全要求的项目 | | CrashPlugin | 页面崩溃 | | | HTTPPlugin | 网络接口错误和测速 | | | JSErrorPlugin | 运行时错误 | | | ResourcePlugin | 资源错误和测速 | | | LongTimeTaskPlugin | 长任务监测 | | | WebVitalsPlugin | webvital 指标检测 | | | EventsPlugin | 用户行为数据记录 | 不会上报,作为其他 plugin 的数据源,会把数据存到 Monitor.eventStack | | BounceRatePlugin | 页面跳出率 | 页面跳出率,依赖 Monitor.eventStack |

注意: 如果有自定义的插件,例如 CustomPlugin, 需要将默认的插件全部 import 一遍

const webmonitor = new WebMonitor({
  appid: "appid",
  plugins: [
      new CustomPlugin(this),
      new RrwebPlugin(this),
      new HTTPPlugin(this),
      ...
  ]
});

Uid 相关

setUid

uid 一般和项目耦合的比较紧密,至少在用户登录后才可以拿到 uid, 所以 monitor 实例上会有一个 setUid 方法可以注册 uid

waitUidFilled

  • 如果项目不关心 uid 信息 ==> waitUidFilled = false: 直接上报不需要等待运行时 setUid

  • 否则可以将 waitUidFilled 打开,让所有 log 带上 uid 信息