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

@mitojs/wx-mini

v3.1.0

Published

A SDK For Monitoring wx-mini Errors

Downloads

314

Readme

@mitojs/wx-mini

🛠️ 安装

# 使用Npm
npm i @mitojs/wx-mini
# 使用Yarn
yarn add @mitojs/wx-mini

🥳 使用

// main.js
import { init } from '@mitojs/wx-mini'

// 多实例
const MitoInstance = init({
  // 开发环境可以开启debug,生成环境改为false
  debug:true,
  dsn: 'https://test.com/yourInterface',
  maxBreadcrumbs: 100,
    // 配置上报时的请求头
  configReportWxRequest(data) {
    return {
      header: {
        'Content-Type': 'text/plain; charset=UTF-8'
      },
      dataType: 'text'
    }
  },
})

更多信息关于@mitojs/wx-mini的使用点击这里

📁 使用本地文件

如果你是原生微信小程序的开发者,建议将这个url:https://cdn.jsdelivr.net/npm/@mitojs/wx-mini/dist/wx-mini.js,下载下来作为一个js文件。然后导入到app.js,就像下面这样: wx-mini-local-file

uni-app(Vue框架)

支持所有vue框架,例如uni-app等等

🛠️ 安装

npm i @mitojs/wx-mini @mitojs/vue

使用

import { init } from '@mitojs/wx-mini'
import { vuePlugin } from '@mitojs/vue'
import Vue from 'vue'
const MitoInstance = init({
  dsn: 'https://test.com/yourInterface',
  maxBreadcrumbs: 100,
  // 配置上报时的请求头
  configReportWxRequest(data) {
    return {
      header: {
        'Content-Type': 'text/plain; charset=UTF-8'
      },
      dataType: 'text'
    }
  },
  vue:Vue
},[vuePlugin])

更多关于@mitojs/vue的用法点击这里

remax(react框架)

🛠️ 安装

npm i @mitojs/wx-mini @mitojs/react

更多关于@mitojs/react的用法click here

options

基础配置项

WxSilentOptionsType

| Name | Type | Default | Description | | :----------------------------: | --------- | ---------- | ------------------------------------------------------------ | | silentRequest | boolean | false | 默认会监控微信小程序的wx.request(接口&下载),为true时,将不再监控 | | silentConsole | boolean | false | 默认会监控微信小程序的wx.console,为true时,将不再监控,由于是重写了wx.console,所以原生的console会被覆盖,建议在测试环境设置成true,在生产环境设置成false | | silentDom | boolean | false | 默认会监控微信小程序的tab、touch事件,当用户touch的标签有id或者class,就会被b捕捉到放入breadcrumb,为true,将不在监听 | | silentRoute | boolean | false | 默认会监控微信小程序App的路由跳转,为true时,将不在监控 | | silentAppOnError | boolean | false | 默认会监控微信小程序的error,为true时,将不在监控 | | silentAppOnUnhandledRejection | boolean | false | 默认会监控微信小程序的unhandledrejection,为true时,将不在监控 | | silentAppOnPageNotFound | boolean | false | 默认会监控微信小程序的微信小程序App的onPageNotFound,为true时,将不在监控 |

WxHookOptionsType

/**
 * 配置wx小程序上报时的wx.request配置
 *
 * @param {(TransportDataType | any)} event 即将上报的数据
 * @return {*}  {Partial<WechatMiniprogram.RequestOption>}
 * @memberof WxHookOptionsType
 */

configReportWxRequest(event: TransportDataType | any): Partial<WechatMiniprogram.RequestOption>

**示例:**配置上报时的请求头的content-type

MITO.init({
  ...
  configReportWxRequest(breadcrumb, hint){
  	return {
      header: {
        'Content-Type': 'text/plain; charset=UTF-8'
      },
      dataType: 'text'
    }
  }
})

/**
 * 钩子函数:wx小程序的App下的onLaunch执行完后再执行以下hook
 *
 * @param {WechatMiniprogram.App.LaunchShowOption} options
 * @memberof WxHookOptionsType
 */

appOnLaunch(options: WechatMiniprogram.App.LaunchShowOption): void

**示例:**在ApponLaunch中打印并输出入参`

MITO.init({
  ...
  appOnLaunch(options){
  	console.log('mito appOnLaunch', options)
  }
})

/**
 * 钩子函数:wx小程序的App下的OnShow执行完后再执行以下hook
 *
 * @param {WechatMiniprogram.App.LaunchShowOption} options
 * @memberof WxHookOptionsType
 */

appOnShow(options: WechatMiniprogram.App.LaunchShowOption): void

**示例:**在ApponShow中打印并输出入参`

MITO.init({
  ...
  appOnShow(options){
  	console.log('mito appOnShow', options)
  }
})

/**
 * 钩子函数:wx小程序的App下的OnHide执行完后再执行以下hook
 *
 * @memberof WxHookOptionsType
 */

appOnHide(): void

**示例:**在AppappOnHide中打印`

MITO.init({
  ...
  appOnHide(){
  	console.log('mito appOnHide', options)
  }
})

/**
 * 钩子函数:先执行下的onPageNotFound执行完后再执行以下hook
 *
 * @param {WechatMiniprogram.OnPageNotFoundCallbackResult} data
 * @memberof WxHookOptionsType
 */

appOnPageNotFound(data: WechatMiniprogram.OnPageNotFoundCallbackResult): void

**示例:**在PageappOnPageNotFound中打印并输出入参`

MITO.init({
  ...
  appOnPageNotFound(data){
  	console.log('mito appOnPageNotFound', data)
  }
})

/**
 * 钩子函数:先执行hook:pageOnLoad再执行wx小程序的Page下的pageOnLoad
 *
 * @param {IWxPageInstance} page
 * @memberof WxHookOptionsType
 */

pageOnLoad(page: IWxPageInstance): void

**示例:**在PagepageOnLoad中打印并输出入参`

MITO.init({
  ...
  pageOnLoad(page){
  	console.log('mito pageOnLoad', page)
  }
})

/**
 * 钩子函数:先执行hook:pageOnShow再执行wx小程序的Page下的onShow
 *
 * @param {IWxPageInstance} page
 * @memberof WxHookOptionsType
 */

pageOnShow(page: IWxPageInstance): void

**示例:**在PagepageOnShow中打印并输出入参`

MITO.init({
  ...
  pageOnShow(page){
  	console.log('mito pageOnShow', page)
  }
})

/**
 * 钩子函数:先执行hook:pageOnReady再执行wx小程序的Page下的pageOnReady
 *
 * @param {IWxPageInstance} page
 * @memberof WxHookOptionsType
 */

pageOnReady(page: IWxPageInstance): void

**示例:**在PagepageOnReady中打印并输出入参`

MITO.init({
  ...
  pageOnReady(page){
  	console.log('mito pageOnReady', page)
  }
})

/**
 *  钩子函数:先wx小程序的App下的pageOnUnload执行完后再执行以下hook
 *
 * @param {IWxPageInstance} page
 * @memberof WxHookOptionsType
 */

pageOnUnload(page: IWxPageInstance): void

**示例:**在PagepageOnUnload中打印并输出入参`

MITO.init({
  ...
  pageOnUnload(page){
  	console.log('mito pageOnUnload', page)
  }
})

/**
 * 钩子函数:先执行hook:pageOnHide再执行wx小程序的Page下的onHide
 *
 * @param {IWxPageInstance} page
 * @memberof WxHookOptionsType
 */

pageOnHide(page: IWxPageInstance): void

**示例:**在PagepageOnHide中打印并输出入参`

MITO.init({
  ...
  pageOnHide(page){
  	console.log('mito pageOnHide', page)
  }
})

/**
 * 先执行hook:onShareAppMessage再执行wx小程序的Page下的onShareAppMessage
 *
 * @param {(WechatMiniprogram.Page.IShareAppMessageOption & IWxPageInstance)} options
 * @memberof WxHookOptionsType
 */

pageOnShareAppMessage(options: WechatMiniprogram.Page.IShareAppMessageOption & IWxPageInstance): void

**示例:**在PagepageOnShareAppMessage中打印并输出入参`

MITO.init({
  ...
  pageOnShareAppMessage(options){
  	console.log('mito pageOnShareAppMessage', options)
  }
})

/**
 * 先执行hook:onShareTimeline再执行wx小程序的Page下的onShareTimeline
 *
 * @param {IWxPageInstance} page
 * @memberof WxHookOptionsType
 */

pageOnShareTimeline(page: IWxPageInstance): void

**示例:**在PagepageOnShareTimeline中打印并输出入参`

MITO.init({
  ...
  pageOnShareTimeline(page){
  	console.log('mito pageOnShareTimeline', page)
  }
})

/**
 * 先执行hook:onTabItemTap再执行wx小程序的Page下的onTabItemTap
 *
 * @param {(WechatMiniprogram.Page.ITabItemTapOption & IWxPageInstance)} options
 * @memberof WxHookOptionsType
 */

pageOnTabItemTap(options: WechatMiniprogram.Page.ITabItemTapOption & IWxPageInstance): void

**示例:**在PagepageOnTabItemTap中打印并输出入参`

MITO.init({
  ...
  pageOnTabItemTap(options){
  	console.log('mito pageOnTabItemTap', options)
  }
})

/**
 * 钩子函数:重写wx.NavigateToMiniProgram将里面的参数抛出来,便于在跳转时更改query和extraData
 *
 * @param {WechatMiniprogram.NavigateToMiniProgramOption} options
 * @return {*}  {WechatMiniprogram.NavigateToMiniProgramOption}
 * @memberof WxHookOptionsType
 */

wxNavigateToMiniProgram(options: WechatMiniprogram.NavigateToMiniProgramOption): WechatMiniprogram.NavigateToMiniProgramOption

**示例:**在用wxNavigateToMiniProgram触发跳转小程序时,可以对传入的参数进行覆盖,如下面对query参数进行追加参数

MITO.init({
  ...
  wxNavigateToMiniProgram(options){
    options.path = `${options.path}?time=${Date.now()}`
    return options
  }
})

/**
 * 钩子函数:代理Action中所有函数,拿到第一个参数并抛出
 *
 * 可用来判断e.type是否等于tap
 *
 * @param {WechatMiniprogram.BaseEvent} e 拿到事件e
 * @memberof WxHookOptionsType
 */

triggerWxEvent(e: WechatMiniprogram.BaseEvent): void

**示例:**截取tap的回调函数,并输出currentTarget对象

MITO.init({
  ...
  triggerWxEvent(e){
    // 当然也可以对touchmove等等事件做判断
    if (e.type === 'tap'){
      // 当前函数就是tap的回调函数,可拿到currentTarget的dataset,里面包含class、id等等属性
      console.log(e.currentTarget)
    }
  }
})