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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@docoi/mys-sdk

v1.0.0-beta.0

Published

A class mini-program style JSBridge SDK for Docoi H5

Downloads

24

Readme

@yangkangtan/mysJs-sdk

封装基于 @docoi/jsbridge-sdk 的H5 JSBridge SDK。

安装

pnpm add @yangkangtan/mysJs-sdk

快速开始

import mys from "@yangkangtan/mysJs-sdk"

// 获取系统信息
const info = await mys.getSystemInfo()
console.log(info.brand, info.platform)

// 显示提示框
await mys.showToast({ title: '操作成功', icon: 'success' })

三种调用方式

SDK 支持回调风格Promise 风格混合调用三种方式,完全兼容微信小程序 API 风格。

1. Promise / async-await(推荐)

import mys from "@yangkangtan/mysJs-sdk"

async function demo() {
  // 显示提示框
  await mys.showToast({ title: '加载中...' })

  // 获取网络类型
  const network = await mys.getNetworkType()
  console.log(network.networkType)

  // 获取系统信息
  const sys = await mys.getSystemInfo()
  console.log(sys.platform)  // "android" | "ios"
}

2. 纯回调风格

// 显示提示框(带成功回调)
mys.showToast({
  title: '提交成功',
  icon: 'success',
  duration: 1000,
  mask: true,
  success: function () {
    setTimeout(function () {
      // 提示结束后执行操作
    }, 1000);
  },
  fail: function (err) {
    console.error('显示失败', err.errMsg)
  }
})

// 隐藏提示框
mys.hideToast({
  success: () => { console.log('提示框已隐藏') }
})

// 获取系统信息
mys.getSystemInfo({
  success: (res) => {
    console.log(res.brand, res.platform)
  }
})

3. 混用(传入回调但仍返回 Promise)

// 传入回调,但同时返回 Promise
const res = await mys.getStorage(
  { key: 'userInfo' },
  {
    success: () => { console.log('获取成功') },
    fail: (err) => { console.error(err) }
  }
)
console.log(res.data)  // Promise result 同样可用

开发命令

# 安装依赖
pnpm install

# 监听模式构建
pnpm dev

# 生产构建
pnpm build

# 类型检查
pnpm type-check

License

MIT