1.0.16 • Published 3 years ago

douyin-danmaku v1.0.16

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

这个一个抖音直连的应用 可以直接获取抖音直播间的弹幕 node 端

yarn add douyin-danmaku

const { live, handleMessage, PLATFORM } = require("./bundle.js");
(async () => {
  let ws = await live({
    roomNumber: "80017709309",
    platform: PLATFORM.douyin,
    isBrowser: true,// 
    cb: (msg) => {
      console.log(msg);
    },
  });

  setTimeout(() => {
    // 如果是 isBrowser=false 必须先removeAllListeners 才能close成功
    // 如果是 isBrowser=true 就没必要removeAllListeners 这样才能页面关闭成功
    ws.removeAllListeners();
    ws.close();
  }, 5000);
})();
1.0.19

3 years ago

1.0.18

3 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.21

3 years ago

1.0.20

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago