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

mirai-reactivity-ws

v1.2.0

Published

Vue3 reactivity utils for mirai-api-http(websocket)

Downloads

1

Readme

mirai-reactivity-ws

npm GitHub

vue3 composition响应式风格 mah websocket客户端实现,支持浏览器和nodejs。

安装

npm install mirai-reactivity-ws --save

基本API

创建api实例

const { api } = await createMiraiWebsocketApi(miraiWsConnectParams)

MiraiWsConnectParams类型

type VerifyKeyAuthentication = { qq?: number, verifyKey?: string }
type SessionKeyAuthentication = { sessionKey?: string }
type WsAuthentication = VerifyKeyAuthentication & SessionKeyAuthentication
export interface MiraiWsConnectParams {
  address: string,
  authentication: WsAuthentication
}

注册全局API实例

registerGlobalMiraiApi(api)

获取响应式的API引用

const miraiApi = useMiraiApi()

miraiApi是一个Ref值,当miraiApi被注册时,其内容会响应式更新

调用mirai api接口

const miraiApi = useMiraiApi()
console.log(await miraiApi.value.about())	// 输出插件信息

响应式API

获取插件信息(响应式)

const { pluginInfo, emitUpdate } = usePluginInfo()

pluginInfo是一个响应式的Ref引用,当MiraiApi实例被注册后,会响应式更新内容。

同时也可以通过emitUpdate手动触发更新。

获取Bot信息(响应式)

const { botProfile, state, emitUpdate } = useBotProfile()

pluginInfo是一个响应式的Ref引用,当MiraiApi实例被注册后,会响应式更新内容。

同时也可以通过emitUpdate手动触发更新。

state表示了当前的数据状态,包含"pending" | "loading" | "done"

获取好友列表、群列表、群成员列表(响应式)

const { friends, state, emitUpdate } = useFriends()	// 获取响应式好友列表

const { groups, state, emitUpdate } = useGroups()	// 获取响应式群列表

const groupId = ref(123456789)
const { members, state, emitUpdate } = useMemberList(groupId)	// 获取响应式群成员列表、数据会随着groupId更新

friends、groups是一个响应式的Ref引用,当MiraiApi实例被注册后,会响应式更新内容。

同时也可以通过emitUpdate手动触发

state表示了当前的数据状态,包含"pending" | "loading" | "done"

其他API

请自行查阅源码

Thanks

本项目部分实现参考了以下项目

YunYouJun/mirai-ts

License

GNU AGPLv3

本项目仅供学习参考,禁止用于任何商业用途。任何单位或个人认为本项目可能涉嫌侵犯其合法权益,应该及时提出反馈,我们将会第一时间对违规内容给予删除等相关处理。