web-wechat
v1.0.1
Published
web wechat client sdk for nodejs
Downloads
14
Readme
lib-wechat
- nodejs端的lib-wechat 实现
- 按照icqq的规范,实现了的部分接口
使用样例
- 安装依赖:
npm install lib-wechat --save
- 引入:
const {Client} = require('lib-wechat');
const client = new Client();
client.start()
client.on('message', (e) => {
console.log(e);
if (e.message === 'hello') {
e.reply('world');
}
})
感谢
- icqq 提供参考代码
申明
- 本仓库使用MIT协议开源,使用本仓库代码,请遵守MIT协议
- 本仓库代码仅供学习交流,不得用于商业用途
- 开源项目,造成的任何后果,本人不负任何责任