Ecosyste.ms: Awesome
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: 22 days ago
JSON representation
A wrapper to make API.AI webhooks on AWS Lambda.
- Host: GitHub
- URL: https://github.com/thebenforce/lambda-bot
- Owner: theBenForce
- License: mit
- Created: 2017-08-12T16:59:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-13T21:43:02.000Z (almost 7 years ago)
- Last Synced: 2024-10-07T13:48:40.876Z (about 1 month ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```