An open API service indexing awesome lists of open source software.

https://github.com/thebenforce/lambda-bot

A wrapper to make API.AI webhooks on AWS Lambda.
https://github.com/thebenforce/lambda-bot

Last synced: 3 months ago
JSON representation

A wrapper to make API.AI webhooks on AWS Lambda.

Awesome Lists containing this project

README

        

# lambda-bot
A wrapper to make API.AI webhooks on AWS Lambda.

Here's a simple example:

```javascript
const LambdaBot = require('lambda-bot');

const bot = new LambdaBot();

bot.setAction('hello.world', (app) => {
app.tell('Hello from AWS Lambda!');
});

exports.handler = bot.handler();
```