npm.io
1.0.1 • Published 7 years ago

botbuilder-greeting

Licence
MIT
Version
1.0.1
Deps
0
Size
2 kB
Vulns
0
Weekly
0

botbuilder-greeting

A BotBuilder middleware that greets users upon starting a chat session.

This is a middleware responds to a conversationUpdate activity type where a new member was added and it is not the same member id as the running bot.

Installation

npm install botbuilder-greeting

Usage


const adapter = new BotFrameworkAdapter();
adapter.use(new BotGreeting(context => {
    return `Hi I'm your friendly bot`;
}));

Keywords