@itchatapp/client
v1.1.0
Published
A JS/TS library to interacting with ItChat API
Downloads
5
Readme
ItChat.js
Installation (NodeJS only)
$ npm i @itchatapp/client
Example Usage
import { Client } from '@itchatapp/client'
const client = new Client()
client.on('messageCreate', (msg) => {
if (msg.content === '!ping') {
msg.reply('Pong!')
}
})
client.login('your-token-here')