Rolling with Alexa
This repo is the source code for the talk Voice User Interfaces with Alexa and Node.js
presented at the Rolling Scopes #49 Kraków edition.
Checkout the slides!
Local development
Clone and install
> git clone https://github.com/ricardocasares/rolling-with-alexa.git
> cd rolling-with-alexa
> npm install # or yarn
Alexa console
- Signup for an Amazon developer account if you haven't one
- Go to the Alexa Console and create a new Skill
- Choose the skill Name, and select Custom Skill
- Under the
Interaction Model
sidebar menu, click onJSON Editor
and copy/paste the JSON under/model/en-US.json
- Save & build your skill.
Local server tunneling
In order to develop locally and see your changes reflected instantly, you will need to create an SSH tunnel or expose somehow your local development server. There are several services that allow you to do this, for example ngrok.io
or serveo.net
.
Using serveo.net
This is the easiest to setup
- You need to have an SSH client installed, then simply run
> ssh -R 80:localhost:3000 serveo.net
Forwarding HTTP traffic from [https://YOUR_URL]
Press g to start a GUI session and ctrl-c to quit.
- Once you see the URL, copy it and go to your Skill console.
- Open the
Endpoint
menu and selectHTTPS
- Under
Default Region
paste the previous URL you copied. - On the select box choose:
My development endpoint is a sub-domain of a domain that has a wildcard certificate from a certificate authority
. - You are done! Just run
npm run dev
oryarn dev
to start the local server and begin testing the skill.
Using ngrok.io
- Run
npm install ngrok
- Run
ngrok http 3000
- Copy the URL and follow the same steps above from 3 to 6.
Contributing
Feel free to submit a pull request or create a new issue.