8000 GitHub - hareteam/weixinbot: Nodejs 封装网页版微信的接口,可编程控制微信消息
[go: up one dir, main page]

Skip to content

Nodejs 封装网页版微信的接口,可编程控制微信消息

Notifications You must be signed in to change notification settings

hareteam/weixinbot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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: 1000 * 600,
})

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.

About

Nodejs 封装网页版微信的接口,可编程控制微信消息

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%
0