1.0.1 • Published 3 years ago

communication-channel v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

简介

communication-channel 是一个用于浏览器端跨页面通信的库。

使用

安装

  • NPM 引入

    npm install communication-channel

示例

import { CommunicationChannel } from 'communication-channel'
const channel = new CommunicationChannel('test')
// 发送信息
channel.postMessage('test message')
// 监听信息方式一
channel.onmessage = msg => console.dir(msg)
// 监听信息方式二
channel.addEventListener('message', handler)
// remove 监听
channel.removeEventListener('message', handler)
// 关闭通信
channel.close()