1.0.21 • Published 10 months ago

douyin-danmaku v1.0.21

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months 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

10 months ago

1.0.18

10 months ago

1.0.17

10 months ago

1.0.16

10 months ago

1.0.21

10 months ago

1.0.20

10 months ago

1.0.15

10 months ago

1.0.14

10 months ago

1.0.11

11 months ago

1.0.10

11 months ago

1.0.13

11 months ago

1.0.12

11 months ago

1.0.9

12 months ago

1.0.8

12 months ago

1.0.7

12 months ago

1.0.6

12 months ago

1.0.5

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago