import { WechatyBuilder } from 'wechaty' const bot = WechatyBuilder.build() bot.on('message', async msg => { const text = msg.text() if (text === '你好') { await msg.say('你好呀 👋') } }) bot.start()
import { WechatyBuilder } from 'wechaty'
const bot = WechatyBuilder.build()
bot.on('message', async msg => {
const text = msg.text()
if (text === '你好') {
await msg.say('你好呀 👋')
}
})
bot.start()