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

wx-stat-native

v0.2.15

Published

wx-stat-native用于微信小程序跳转到其它小程序或h5广告页时给指定用户发送统计代码。

Downloads

6

Readme

wx-stat-native

wx-stat-native用于微信小程序跳转到其它小程序或h5广告页时给指定用户发送统计代码。

本组件仅供使用小程序原生语法开发的小程序使用。

使用

准备工作

  • 在app.json中增加跳转小程序白名单"navigateToMiniProgramAppIdList": ["wxe5f52902cf4de896"]官方文档
  • 小程序后台,服务器域名添加以下域名为request白名单(后续adx有变动需同步修改)
    • https://a.adx.newoer.com
    • https://rtb.adx.newoer.com
    • https://s.adx.newoer.com

小程序原生语法

1.第一步

安装组件

npm install wx-stat-native --save

2.第二步

微信开发者工具,按照教程进行小程序构建npm 小程序使用npm包

3.第三步

打开pages/xxx/xxx.json,引入组件

{
  "usingComponents": {
    "wxstat": "wx-stat-native"
  }
}

4.第四步

打开pages/xxx/xxx.wxml

<wxstat 
  type="{{type}}" 
  name="{{name}}" 
  sid="{{sid}}" 
  tag-id="{{tagId}}" 
  uid="{{uid}}" 
  aid="{{aid}}" 
  rid="{{rid}}" 
  imptrace="{{imptrace}}" 
  clktrace="{{clktrace}}"
  bind:goto="showInMySite"
>
</wxstat>

注意 bind:goto="showInMySite"这一行,如果是跳转到h5,具体跳转逻辑由bind:goto绑定的事件控制。

打开pages/xxx/xxx.js

Page({
  data:{ // 组件需要的参数,不一定非得写这里,根据具体业务调整
    name: '你画我拆',
    tagId: '300350',
    sid: '100000',
  },
  showInMySite(e){ // h5跳转,务必增加这个跳转函数
    const url = e.detail.url;
    console.log('待跳转url', url);
  },
})

mpvue

请移步wx-stat-vue

wepy

请移步wx-stat-wepy

参数

| 选项 | 类型 | 描述 | 可选 | | ----- | ---- | ----- | ---- | | type | String | 广告主或小程序用户 | 可选,默认'user',['adx','user'] | | tag-id | String | 广告主提供的tagid | 必填 | | sid | String | 媒体的账户id | 必填 | | name | String | 小程序名称 | 必填 | | uid | String | 用户微信id | 可选 | | aid | String | 预留参数aid | 可选 | | rid | String | 预留参数rid | 可选 | | imptrace | String | 小程序用户提供,展示时发送统计 | 可选 | | clktrace | String | 小程序用户提供,小程序跳转成功时发送统计 | 可选 | | bind:goto | Function | 控制h5具体跳转的函数 | 可选,h5广告则必填 |