https://github.com/voxaai/voxa-dashbot
https://github.com/voxaai/voxa-dashbot
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/voxaai/voxa-dashbot
- Owner: VoxaAI
- License: mit
- Created: 2018-03-20T22:02:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:30:54.000Z (over 3 years ago)
- Last Synced: 2025-04-19T00:55:01.232Z (about 1 year ago)
- Language: TypeScript
- Size: 1.11 MB
- Stars: 0
- Watchers: 16
- Forks: 4
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Voxa Dashbot for Alexa Skills and Google Actions
[](https://travis-ci.org/mediarain/voxa-dashbot)
[](https://coveralls.io/github/mediarain/voxa-dashbot?branch=master)
A [Dashbot](https://www.npmjs.com/package/dashbot) plugin for building Alexa Skills and Google Actions with [voxa](http://voxa.ai/)
## Installation
Just install from [npm](https://www.npmjs.com/package/voxa-dashbot)
```bash
npm install --save voxa-dashbot
```
## Usage
```javascript
const { VoxaApp } = require("voxa");
const voxaDashbot = require("voxa-dashbot").register;
const voxaApp = new VoxaApp(voxaOptions);
const dashbotConfig = {
alexa: "", // to track Alexa requests
botframework: "", // to track botframework requests
debug: true, // to print dashbot package logs
dialogflow: "", // to track dialogflow requests
ignoreUsers: [], // a list of users to ignore, it can also be a regex
printErrors: true, // used by dashbot package to print any errors
redact: true, // removes personally identifiable information using redact-pii
timeout: 5000, // timeouts dashbot requests after given milliseconds
suppressSending: false // A flag to supress sending hits.
};
voxaDashbot(voxaApp, dashbotConfig);
```