1.0.21 • Published 2 years ago

douyin-danmaku v1.0.21

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

2 years ago

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

2 years ago

1.0.21

2 years ago

1.0.20

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago