Skip to content

ratewar/nodejsbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TheBot

nodejsbot Quick Start

GitHub Site

Pre-requisites

  1. Node.js v4.3.0 or later. Download
  2. Serverless CLI v1.9.0 or later. You can run npm install -g serverless to install it once node is installed
  3. An AWS account. If you don't already have one, you can sign up for a free trial that includes 1 million free Lambda requests per month.
  4. Set-up your CredentialsAWS Docs. Watch the video on setting up credentials Serverless

Create a new chatbot using LEX and Lambda Screens provided by AWS (e.g. Creating OrderFlowers Bot)

  1. Go to Lex console and select OrderFlowers as bot
  2. Create a Lambda function by going to Lambda Console and using filter Lex and selecting OrderFlowerLex nodejs blueprint
  3. Specify respective roles etc and test Lambda function using Lex Flower bot test event
  4. Go to LEX console select OrderFlower bot and attach the Lambda Function to Initialization and validation code hook and confirmation
  5. Build the bot and publish it by providing an alias name

How to call the FlowerBot from your machine

  1. There is a folder node_http
  2. Got to folder make sure you have node installed
  3. Open app.js in your machine set your AWS access key, password and specify Bot Parameters like botName, alias etc in script.
  4. Type node server when you are in the folder and it will have a web server running at http://localhost:3000
  5. Make sure you never checkin changes with your AWS access key and ID
  6. Try your utterances from the UI screen

In case you want to deploy lambda function from your desktop instead of using AWS templates (use below instructions)

Create a new service using the Node.js template, specifying a unique name and an optional path for your service.

# Create a new Serverless Service/Project
$ serverless create --template aws-nodejs --path nodejsbot
# Change into the newly created directory
$ cd nodejsbot
# Replace handler.js and serverless.yml by the files provided in repo
File replaced by repo version

Deploy, test and diagnose your service

  1. Deploy the Service
serverless deploy -v
  1. Go to AWS console create a LEX Bot using Lex FlowerBot template

  2. Attach the Lambda function created with the Bot

  3. Test the chatbot and refer Cloudwatch logs

Cleanup

If at any point, you no longer need your service, you can run the following command to remove the Functions, Events and Resources that were created, and ensure that you don't incur any unexpected charges.

serverless remove

About

Amazon lex bot using Serverless

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published