blive-message-listener icon indicating copy to clipboard operation
blive-message-listener copied to clipboard

Bilibili live danmu listener with type. 类型友好的 Bilibili 直播间弹幕监听库。

Results 4 blive-message-listener issues
Sort by recently updated
recently updated
newest added

### Describe the bug ```js const bilive = require('blive-message-listener'); bilive.startListen(5050, { onOpen() { console.log('open'); }, onClose() { console.log('close'); process.exit() }, onIncomeDanmu: (msg) => { console.log(msg.id, msg.body); }, }); ``` 运行后立刻就关闭了。...

### Clear and concise description of the problem 如题 ### Suggested solution 如题 ### Alternative _No response_ ### Additional context _No response_ ### Validations - [X] Follow our [Code of...

enhancement

### Describe the bug Chinese is OK for me, I would like chatting in Chinese. I wrote a very simple program, and it goes like this: ``` onIncomeDanmu: (msg) =>...

目前,`onUserAction` 事件融合了 `INTERACT_WORD` 与 `ENTRY_EFFECT` 两类消息。 - `INTERACT_WORD` 包括一般用户与大航海用户的进入消息,但会有遗漏 - `ENTRY_EFFECT` 应该仅包含大航海用户的,不过昵称不全,超长时会截断 这样航海用户进入直播间时,很容易会发送两次。计划开启一个稍短的定时器来融合两条消息。

enhancement