Quickly get started developing Amazon Alexa skills for you Amazon Echo.
To get started simple use npm install
to install all dependencies.
To deploy your skill you will need to use the gulp
command to zip up the file and drop into Lambda.
Check out index.js
for the boilerplate Alexa app. Examples of how to define an intent handler, build sample utterences and schema, and response asynchronously are all included. You can also see example projects located in the examples/
directory.
Each Alexa skill requires a Lambda function.
- Log into the AWS Lambda Console and making sure your region is set to
us-east-1
- Click "Create Lambda Function"
- Choose to skip the "Select blueprint" phase
- Give your function a name and description.
- Set the role and create your function.
- Using the
gulp
command upload the zip file from the newly createddist
directory.