tmi.js
v1.8.5
网站 |文档目前位于 tmijs/docs |发布页面上的变更日志
$ npm i tmi.js
const tmi = require ( 'tmi.js' ) ;
const client = new tmi . Client ( {
options : { debug : true } ,
identity : {
username : 'bot_name' ,
password : 'oauth:my_bot_token'
} ,
channels : [ 'my_channel' ]
} ) ;
client . connect ( ) . catch ( console . error ) ;
client . on ( 'message' , ( channel , tags , message , self ) => {
if ( self ) return ;
if ( message . toLowerCase ( ) === '!hello' ) {
client . say ( channel , `@ ${ tags . username } , heya!` ) ;
}
} ) ;
在window
上可作为“ tmi
”使用。
< script src =" /scripts/tmi.min.js " > script >
< script >
const client = new tmi . Client ( { /* ... */ } ) ;
client . connect ( ) . catch ( console . error ) ;
script >
发布页面
$ git clone https://github.com/tmijs/tmi.js.git
$ npm install
$ npm run build
$ npm i -D @types/tmi.js
感谢所有 tmi.js 贡献者!
请查看 tmi.js 存储库贡献指南。如果请求请求不符合要求,我们保留拒绝请求的权利。