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
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.
-
You need to set up 2 projects, one is for distributor (producer), another is for consumer
-
In your distributor project, run below
$ npm install @powerbotkit/distributor # yarn add @powerbotkit/distributor
- 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();
})();
- In your consumer project, run below
$ npm install @powerbotkit/consumer # yarn add @powerbotkit/consumer
WIP
this is todo list
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
MIT © PowerBotKit Team
thanks for jetbrains support.