1.0.0 • Published 4 years ago

wechaty-got-kicked v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

Wechaty-Got-Kicked-Out

Wechaty Plugin Contrib Wechaty Plugin Contrib Build Status

What is this?

this is a wechaty plugin to monitor whether your bot got kicked out of group chat.

just few line of code to implement this instead fussy judging.

Usage

import {Wechaty} from "wechaty"

import {GotKicked} from "wechaty-got-kicked-out"

const bot = new Wechaty({
   name:"wechaty-got-kicked-out"
})

bot.use(GotKicked({
   onKick(room, remover, date){
      console.log(`
         bot just got kick out of ${await room.topic()}]${room.id} 
         by ${remover ? remove.name(): 'it self'} 
         --date:${date}
         `)
   },
   /*
   comming soon... 
   whiltList:{
      id:"19710388933@chatroom"
      // or
      id:["19710388933@chatroom","98345982793@chatroom"]
      // or
      topic:"微信群001"
      // or
      topic:["微信群001","微信群002"]
   }
   */
   
}))

bot.start()
   .catch(console.error)

Test

npm run test

Build

npm run build

Maintainers

Copyright & License

  • Code & Docs © 2020-now LegendaryJesse|Wechaty
  • Code released under the MIT License
  • Docs released under Creative Commons