
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
jovo-analytics-dashbot
Advanced tools
> To view this page on the Jovo website, visit https://v3.jovo.tech/marketplace/jovo-analytics-dashbot
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.

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.
To use Dashbot Analytics for your voice app, you need to complete the following steps:
Create a Dashbot account or log in at https://www.dashbot.io.
Click "Add a Bot" in the Admin panel:



To add Dashbot Analytics to your voice app, do the following:
app.jsconfig.jsFirst, 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 your voice app, after a bit your session should appear in the Report section (data is updated hourly):

FAQs
> To view this page on the Jovo website, visit https://v3.jovo.tech/marketplace/jovo-analytics-dashbot
The npm package jovo-analytics-dashbot receives a total of 3 weekly downloads. As such, jovo-analytics-dashbot popularity was classified as not popular.
We found that jovo-analytics-dashbot demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.