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

@better-mini/api

v1.0.0-alpha.5

Published

小程序 API Promisify,支持 async/await,支持微信、支付宝等平台。

Downloads

5

Readme

@better-mini/api

小程序 API 接口 promisify 代理,支持异步接口的 async/await 调用。

使用

安装

npm install @better-mini/api

微信端使用

// page.js
import mini from '@better-mini/api/lib/wx'

Page({
  async onLoad() {
    const systemInfo = await mini.getSystemInfo() // 接口调用
    console.log(systemInfo)
  },
})

支付宝端使用

// page.js
import mini from '@better-mini/api/lib/my'

Page({
  async onLoad() {
    const systemInfo = await mini.getSystemInfo() // 接口调用
    console.log(systemInfo)
  },
})

其他端使用

// page.js
import { createApiProxy } from '@better-mini/api/lib/api-proxy'

const mini = createApiProxy({ swan }) // 封装百度小程序接口

Page({
  async onLoad() {
    const systemInfo = await mini.getSystemInfo() // 接口调用
    console.log(systemInfo)
  },
})

平台支持

| 平台 | 支持情况 | 说明 | | -------- | -------- | --------------------------------------------------------- | | 微信 | 支持 | 引入 @better-mini/api/lib/wx 直接使用 | | 支付宝 | 支持 | 引入 @better-mini/api/lib/my 直接使用。也支持淘宝、千牛 | | 百度 | 理论支持 | 需通过 createApiProxy 支持 | | 字节 | 理论支持 | 需通过 createApiProxy 支持 | | QQ | 理论支持 | 需通过 createApiProxy 支持 | | 京东 | 理论支持 | 需通过 createApiProxy 支持 | | 企业微信 | 理论支持 | 需通过 createApiProxy 支持 | | 钉钉 | 理论支持 | 需通过 createApiProxy 支持 |

API

createApiProxy(target, [options] )

基于此接口可以封装任何小程序平台的 api 接口。

| 参数 | 可选 | 类型 | 释义 | | -------------------- | ---- | ---------- | --------------------------------------------------------------------------- | | target | 否 | object | 需要封装的 API 对象,微信平台为 { wx },支付宝平台为 { my },以此类推。 | | options | 是 | object | 配置选项,用于指定同步接口检测正则、同步接口列表、属性列表。 | | options.syncPreset | 是 | RegExp[] | 同步接口检测正则,如 /[a-z]Sync$/ 检测 wx.getSystemInfoSync。 | | options.syncApis | 是 | string[] | 同步接口列表,如 base64ToArrayBuffer | | options.props | 是 | string[] | 属性列表,如 env |

使用

import { createApiProxy } from '@better-mini/api/lib/api-proxy'

const mini = createApiProxy({ wx }) // 仅支持异步接口,不支持同步接口调用和属性读取

const options = {
  syncPreset: [/[a-z]Sync$/, /^(on|off)[A-Z]/, /^create[A-Z]/],
  syncApis: ['canIUse'],
  props: ['env'],
}
const mini = createApiProxy({ wx }, options) // 支持异步接口,也可配置支持同步接口调用和属性读取

同步接口调用和属性读取

import mini from '@better-mini/api/lib/wx'

const systemInfo = mini.getSystemInfoSync() // 同步接口调用

console.log(mini.env) // 属性读取

虽然 @better-mini/api 支持同步接口调用和属性读取,但是考虑到多使用一个类库,就会增加一项潜在的 bug 因素,因此我们推荐使用原生方式进行同步接口调用和属性读取。

示例

TODO

  • [ ] 测试用例完善
  • [ ] Typescript 类型声明

目前 typescript 类型声明为 any,虽然支持在 typescript 中使用,但是缺少代码补全提示和类型检查。没有书写详细的接口类型声明是因为目前尚未有快速修改小程序原生接口类型声明的方案,逐个修改工作量太大。

Contributing

你可以:

  • 完善 TODO 中的工作
  • 增加对其他平台的支持
  • 完善文档和示例