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

@miphas/auto-view

v0.1.5

Published

auto-view是一款自动上报埋点的工具

Downloads

10

Readme

auto-view

auto-view是一款自动上报埋点的工具

用法

1. npm i @miphas/auto-view --save

2. insert js code

// 渲染真实节点前插入(before render)
import autoView from '@miphas/auto-view'

autoView({
    onElemView: (vid, vdata) => {
        // 替换为曝光上报函数
        console.log('View', vid, vdata)
    },
    onElemClick: (vid, vdata) => {
        // 替换为点击上报函数
        console.log('Click', vid, vdata)
    }
})

3. set html code

<div dataset-vid="m-vid"></div>

基本原理

1.MutationObserver

使用 MutationObserver 来监听节点的变动情况,跟踪 dataset 数据中包 vid 的元素 并根据实际变动情况更新监听列表

2.IntersectionObserver

使用 IntersectionObserver 来监听节点与可视窗口的交叉情况,从而实现曝光 1px 打点行为 PS. 在不支持 IntersectionObserver 的机器上直接打文档上现有元素的曝光点

整体结构

  • MutationObserver 监控了页面节点的增删情况,并通知Record
  • Record 根据节点信息进行筛选,记录下需要监控的节点
  • Report 为监控的节点设置好曝光 (view) 和点击 (click) 的触发器
  • view 触发器使用 IntersectionObserver 根据节点与视窗的交错情况来触发曝光
  • click 触发器同 dom.addEventListener 的方式来触发上报

目录结构

src
|- index.ts 项目初始化根文件
|- type.ts 项目类型定义
|- utils.ts 项目常用工具方法
|- useObserve.ts MutationObserver 观察节点变动
|- useRecord.ts 记录vid标记的节点
|- useReport.ts 设置上报打点的触发
|- getViewTrigger.ts 曝光上报触发器
|- getClickTrigger.ts 点击上报触发器