# botbuilder-greeting

> A BotBuilder middleware to configure initial greeting

Latest version **1.0.1** (published 2018-09-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install botbuilder-greeting
pnpm add botbuilder-greeting
yarn add botbuilder-greeting
bun add botbuilder-greeting
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2018-09-24 |
| First published | 2018-09-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Hattan Shobokshi |
| Maintainers | hattan |
| Keywords | botbuilder, bots |

## Links

- npm: https://www.npmjs.com/package/botbuilder-greeting
- Repository: https://github.com/hattan/botbuilder-greeting
- Homepage: https://github.com/hattan/botbuilder-greeting#readme
- Issues: https://github.com/hattan/botbuilder-greeting/issues
- npm.io page: https://npm.io/package/botbuilder-greeting

## Recent versions

- 1.0.1 (latest) — 2018-09-24
- 1.0.0 — 2018-09-24

## README

# 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

```javascript 

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

```

---
_Source: https://npm.io/package/botbuilder-greeting · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
