wechat-help

0.0.3 • Public • Published

wechat-help

generate help message of used wechat-bot.

Default format:

[bot1 name] help message from bot1
[bot2 name] help message from bot2

The bot should export help and better to be named. See example:

module.exports = function createHelp() {
    return function help(req, res, next) {
        ...
    }
    help.help = 'help message auto generated';
    return help;
};

build status

Installation

This module is installed via npm:

$ npm install wechat-help

Example Usage

var wechatHelp = require('wechat-help');
var wechatBot = require('wechat-bot');
 
var bot = wechatBot();
bot.use(wechatHelp(bot));

Readme

Keywords

Package Sidebar

Install

npm i wechat-help

Weekly Downloads

2

Version

0.0.3

License

BSD-3-Clause

Last publish

Collaborators

  • rogerz