Skip to content

PowerBotKit/powerbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PowerBotKit

PowerBotKit Logg
PowerBotKit is a bot development framework to help developer to quickly build enterprise ready chat-bot solution, it based on botbuilder-js, developed in a monorepo.

Powerbotkit on npm  

Contents

What is PowerBotKit

PowerBotKit is a bot framework developed by PowerBotKit Team. It helps developers to build the chatbot solution on different BOT platform(for example, Teams, Slack, Workspace). It is framework with high performance and easy to scaled.

Find more details from the PowerBotKit website

[WIP] The key capability that PowerBotKit can offer is

We use yarn to bootstrap the project.

QuickStart

Install

  1. You need to set up 2 projects, one is for distributor (producer), another is for consumer

  2. In your distributor project, run below

$ npm install @powerbotkit/distributor # yarn add @powerbotkit/distributor
  1. Use below code snippet to quickly set up your bot distriubtor
import { createDistributorServer, TBotConfig } from '@powerbotkit/distributor';

(async () => {
  const config: TBotConfig = {
    appId: '',
    appSecret: ''
  };
  const server = await createDistributorServer(config);
  server.listen();
})();
  1. In your consumer project, run below
$ npm install @powerbotkit/consumer # yarn add @powerbotkit/consumer

DevelopGuide

WIP

TODO

this is todo list

Contributing

powerbotkit is the open source project. it is on developing. So we would love for you to contribute to powerbotkit and help make it even better than it is today!. Before submitting your contribution, please make sure to take a moment and read contribution guide

License

MIT © PowerBotKit Team

Thanks

thanks for jetbrains support.