Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

Last synced: 22 days 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();
```