Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@botonic/plugin-dashbot

Package Overview
Dependencies
Maintainers
10
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@botonic/plugin-dashbot

## What Does This Plugin Do?

latest
npmnpm
Version
0.40.0
Version published
Maintainers
10
Created
Source

Botonic Plugin Dashbot

What Does This Plugin Do?

Dashbot, as a bot analytics platform, enables you to increase engagement, acquisition, and retention through actionable data.

Setup

  • Install the plugin from npm.
npm install --save @botonic/plugin-dashbot
  • Add it to the src/plugins.js file.
{
    id: 'dashbot',
    resolve: require("@botonic/plugin-dashbot"),
    options: {
      apiKey: 'YOUR_DASHBOT_APIKEY' <!-- pragma: allowlist secret-->
    }
}

Use

You can then use it in your actions.

static async botonicInit({ input, session, plugins }) {
    // Integration with dashbot for incoming messages
    let { dashbot } = plugins
    let userId = session.user.id
    let text = input.data
    await dashbot.logIncoming({ input, session, userId, text })

    return { input }
}

Keywords

bot-framework

FAQs

Package last updated on 30 Sep 2025

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