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

usc-frame-message

v2.1.11

Published

usc rtc client

Downloads

10

Readme

USC frame message

install

//yarn 
yarn add usc-frame-message
//or npm
npm install usc-frame-message

1.parent 父页面代码

//html
<button id="send">send</button>
<iframe src="./recive.html" id="frame"></iframe>

//js
import { UscFrameMeetingApi, UscFrameMessageEvent } from "usc-frame-message"
let api = undefined

document.getElementById("frame").onload = async function () {
    if (api === undefined) {
        //在iframe加载之后执行,这里的this指的是iframe元素
        api = new UscFrameMeetingApi(this["contentWindow"]);//this is point to the  iframe element
        //注册相关监听事件用来获取子页面上报的消息
        api.on(UscFrameMessageEvent.userLeave, (data) => {
            console.log("recive pop message:", data)
        })
    }
    //向子页面发送消息并且接收返回结果,这里采用的是异步的方式
    let result = await api.addMember("zhangsan", "6047")
    console.log("result", result)
}

2.subpage 子页面代码

//js
import { IframeMessageReciver, IframeMessageType, UscFrameMessageEvent } from "usc-frame-message"

let reciver = new IframeMessageReciver()
//注册处理函数,处理父页面发送的addMember的请求
reciver.registerMesssageProcess(IframeMessageType.addMember, (data) => {
    console.log("recive", data)
    //这里的结果将作为父页面调用接口的异步回调返回
    return { success: true, message: "hello" }
})

//主动给父页面推送一条消息
reciver.popMessage(UscFrameMessageEvent.userLeave, "6047")