weixinbot2

0.6.1 • Public • Published

Robot for Wechat personal chat

This project was forked from feit's weixinbot

Installation

$ npm install weixinbot2 --save

Required Nodejs v4+

Usage

'use strict';
 
const Weixinbot = require('weixinbot2')
 
const bot = new Weixinbot({
  dataPath: './',  // data path, will store contacts data to improve experience
  updateContactInterval: 60000,
})
 
bot.on('qrcode', qrcodeUrl => {
  // get the login qrcode url
  // open this url on browser and scan on your Wechat
  console.log(qrcodeUrl)
});
 
bot.on('offline', () => {
  // account offline
});
 
bot.on('online', () => {
  //  account online
});
 
bot.on('friend', msg => {
  console.log(msg.Member.NickName + '' + msg.Content)
  bot.sendText(msg.FromUserName, 'Got it')
});
// group: group message
// system: system message
 
// start run loop
bot.run()

Run

# We recommend show debug message under development 
$ DEBUG=weixinbot2 node index.js

License

Copyright (c) 2016 Zongmin Lei(雷宗民) <leizongmin@gmail.com>
http://ucdok.com

The MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i weixinbot2

Weekly Downloads

0

Version

0.6.1

License

MIT

Last publish

Collaborators

  • leizongmin