# ringcentral-chatbot-skill-ping

> This skill enables the chatbot to reply with "pong" when it received "ping".

Latest version **0.1.2** (published 2018-12-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install ringcentral-chatbot-skill-ping
pnpm add ringcentral-chatbot-skill-ping
yarn add ringcentral-chatbot-skill-ping
bun add ringcentral-chatbot-skill-ping
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2018-12-26 |
| First published | 2018-12-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 165.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | tylerlong |

## Links

- npm: https://www.npmjs.com/package/ringcentral-chatbot-skill-ping
- npm.io page: https://npm.io/package/ringcentral-chatbot-skill-ping

## Recent versions

- 0.1.2 (latest) — 2018-12-26
- 0.1.1 — 2018-12-25
- 0.1.0 — 2018-12-25

## README

# RingCentral Chatbot skill: Ping

This skill enables the chatbot to reply with "pong" when it received "ping".

It should be used together with [RingCentral Chatbot framework for JavaScript](https://github.com/ringcentral/ringcentral-chatbot-js).


## Install

```
yarn add ringcentral-chatbot-skill-ping
```


## Basic Sample

```js
import createApp from 'ringcentral-chatbot/dist/apps'
import pingSkill from 'ringcentral-chatbot-skill-ping'

const app = createApp(undefined, [pingSkill])
```


## Advanced Sample

```js
import createApp from 'ringcentral-chatbot/dist/apps'
import pingSkill from 'ringcentral-chatbot-skill-ping'
// import fooSkill from 'ringcentral-chatbot-skill-foo'
// import barSkill from 'ringcentral-chatbot-skill-bar'

const handle = async event => {
  // event handling code
}

const app = createApp(handle, [
  pingSkill,
//   fooSkill,
//   barSkill
])
app.listen(3000)
```

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