Building My First Alexa Skill with Node.js
Jonathan Brizio
Posted on April 7, 2019
Requirements
- Amazon Developer Account
- Experience with Node.js
What's Alexa?
This is Amazon’s voice-control system. With that, you can control music, create shopping lists or reminders, get instant weather reports, and control popular smart-home products using nothing else that the sound of your voice.
What's an Alexa skill?
These are apps that give to Alexa devices more abilities that the mentioned before. Absolutely of all kinds. Through the Alexa application, you can incorporate or disable these skills.
What's AWS Lambda?
AWS Lambda is a compute service that lets you run code without provisioning or managing servers. You pay only for the compute time you consume - there is no charge when your code is not running. This would be our backend that processes the request and returns the data back as a JSON.
Entities involved in the flow
- The user who speaks a command
- The Echo device, which receives the initial voice input
- The Amazon Alexa service, which receives the data from the devices
- The backend service which contains the business logic for the skill itself
Well, now that you have all the material needed to start with the development, I invite you to install my latest skill called "Dollar Price". That was an experiment with a public API to obtain the official price of exchange between the dollar and Argentine peso.
Posted on April 7, 2019
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.