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 儲存庫貢獻指南。如果請求請求不符合要求,我們保留拒絕請求的權利。