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 リポジトリの貢献に関するガイドラインを確認してください。要件を満たさない場合、当社はプル リクエストを拒否する権利を留保します。