New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

jovo-analytics-dashbot

Package Overview
Dependencies
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jovo-analytics-dashbot

> To view this page on the Jovo website, visit https://v3.jovo.tech/marketplace/jovo-analytics-dashbot

latest
npmnpm
Version
3.6.2
Version published
Weekly downloads
6
50%
Maintainers
1
Weekly downloads
 
Created
Source

Dashbot Analytics Integration

To view this page on the Jovo website, visit https://v3.jovo.tech/marketplace/jovo-analytics-dashbot

Learn how to use Dashbot Analytics for your Alexa Skills and Google Actions built with Jovo.

About Dashbot

Dashbot Website

Dashbot is an analytics tool for both text-based bots (Facebook Messenger, Slack, Kik, Twitter) and voice apps (Amazon Alexa, Google Assistant).

The Dashbot Voice Analytics offering enables voice app developers to compare usage across Alexa Skills and Google Actions and see interaction flows and live transcripts.

Installation

To use Dashbot Analytics for your voice app, you need to complete the following steps:

  • Create a Dashbot Bot
  • Enable Dashbot Analytics in your Jovo voice app
  • Download the dashbot npm package
  • Test your app

Create a Dashbot Bot

Dashbot Add a Bot Dashbot Add a Bot Step 2

  • Select the right Platform: Alexa for Alexa Skills, or Google for Google Actions (if you are developing for both Amazon Alexa and Google Assistant, please create 2 distinct Dashbot Bots):

Dashbot Select Platform

  • Copy API Key

Dashbot Copy API Key

Enable Dashbot in Jovo

To add Dashbot Analytics to your voice app, do the following:

  • Download the npm package
  • Enable the plugin in app.js
  • Add configurations in config.js

First, download the npm package:

$ npm install --save jovo-analytics-dashbot

Enable the plugin like this:

// @language=javascript

// src/app.js

const { DashbotAlexa, DashbotGoogleAssistant } = require('jovo-analytics-dashbot');

app.use(
    new DashbotAlexa(),
    new DashbotGoogleAssistant()
);

// @language=typescript

// src/app.ts

import { DashbotAlexa, DashbotGoogleAssistant } from 'jovo-analytics-dashbot';

app.use(
    new DashbotAlexa(),
    new DashbotGoogleAssistant()
);

Add configurations like this:

// @language=javascript

// src/config.js

module.exports = {
    
    analytics: {
        DashbotAlexa: {
            key: '<key>',
        },
        DashbotGoogleAssistant: {
            key: '<key>',
        },
    },

    // ...

};

// @language=typescript

// src/config.ts

const config = {
    
    analytics: {
        DashbotAlexa: {
            key: '<key>',
        },
        DashbotGoogleAssistant: {
            key: '<key>',
        },
    },

    // ...

};

Test Dashbot

Test your voice app, after a bit your session should appear in the Report section (data is updated hourly):

Dashbot Test

FAQs

Package last updated on 28 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts