Socket
Socket
Sign inDemoInstall

@wireapp/bot-handler-debug

Package Overview
Dependencies
125
Maintainers
6
Versions
489
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @wireapp/bot-handler-debug

```typescript import {BotConfig, BotCredentials, Bot} from '@wireapp/bot-api'; import {DebugHandler} from '@wireapp/bot-handler-debug';


Version published
Weekly downloads
167
increased by2683.33%
Maintainers
6
Install size
22.8 MB
Created
Weekly downloads
 

Readme

Source

Example

import {BotConfig, BotCredentials, Bot} from '@wireapp/bot-api';
import {DebugHandler} from '@wireapp/bot-handler-debug';

const config: BotConfig = {
  backend: 'production',
};

const credentials: BotCredentials = {
  email: process.env.WIRE_EMAIL!,
  password: process.env.WIRE_PASSWORD!,
};

const bot = new Bot(credentials, config);
bot.addHandler(new DebugHandler());

await this.bot.start();

FAQs

Last updated on 11 Oct 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc