1.0.3 • Published 4 years ago

botbuilder-adapter-slack-fork v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Botkit

Botkit is an open source developer tool for building chat bots, apps and custom integrations for major messaging platforms.

This repository contains the core Botkit library, as well as a series of plugins and extensions for connecting Botkit to messaging and chat platforms and other tools in the bot building ecosystem.

Botkit is part of the Microsoft Bot Framework and is released under the MIT Open Source license

Use Botkit

Packages included in this repo

PackageDescriptionNPM Status
botkitBotkit Core libraryNPM Badge
botbuilder-adapter-webA platform adapter for the webNPM Badge
botbuilder-adapter-slackA platform adapter for SlackNPM Badge
botbuilder-adapter-webexA platform adapter for Webex TeamsNPM Badge
botbuilder-adapter-hangoutsA platform adapter for GoogleNPM Badge
botbuilder-adapter-twilio-smsA platform adapter for Twilio SMSNPM Badge
botbuilder-adapter-facebookA platform adapter for Facebook MessengerNPM Badge
generator-botkitA Yeoman generator for creating a new Botkit projectNPM Badge
botkit-plugin-cmsA plugin that adds support for Botkit CMSNPM Badge

Build Botkit locally

This repo contains multiple inter-linked packages containing Botkit Core, platform adapter packages, and some additional plugins and extensions. To build these locally, follow the instructions below.

Install lerna and TypeScript globally:

npm install -g typescript
npm install -g lerna

Clone the entire Botkit project from Github.

git clone git@github.com:howdyai/botkit.git

Enter the new folder and install the dependent packages:

cd botkit
npm install

Use lerna to set up the local packages:

lerna bootstrap --hoist

Now, build all of the libraries:

lerna run build

To build updated versions of the class reference documents found in packages/docs, run:

lerna run build-docs