npm i --save nativescript-sse
- 版本:4.0.2
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-sse
- 下载量
- 昨日:1
- 上周:8
- 上月:51
NativeScript 服务器端发送事件
Server Sent Events (SSE) 的 NativeScript 客户端。
安装
npm install nativescript-sse
用法
import { SSE } from 'nativescript-sse';
let sse = new SSE(serverApi: string, headers: object);
sse.events.on('onConnect', (data) => {
console.log(data.object.connected);
});
sse.events.on('onMessage', (data) => {
this.list.push(JSON.parse(data.object.message.data))
});
sse.events.on('onError', (data) => {
console.log(data.object.error);
});
see.close();