Skip to content
This repository has been archived by the owner on Jul 31, 2022. It is now read-only.

Helper to deploy your bot as a serverless function (AWS Lambda)

License

Notifications You must be signed in to change notification settings

palmerabollo/botbuilder-aws-lambda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

botbuilder-aws-lambda

Deploy your Microsoft Bot as an AWS Lambda function.

const botbuilder = require('botbuilder');
const lambda = require('botbuilder-aws-lambda');

let connector = new builder.ChatConnector({
    appId: process.env.MICROSOFT_APP_ID,
    appPassword: process.env.MICROSOFT_APP_PASSWORD
});

exports.handler = lambda(connector); // MAGIC HAPPENS HERE

let bot = new builder.UniversalBot(connector);

LICENSE

Apache 2.0

About

Helper to deploy your bot as a serverless function (AWS Lambda)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published