DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workkloads.

Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • Alexa Skill With Node.js
  • Alexa Skill With Python
  • How to Set up Cypress and Typescript End-to-End Automation Testing Framework From Scratch
  • Alexa Skill With Local DynamoDB

Trending

  • Unlocking the Benefits of a Private API in AWS API Gateway
  • Java's Quiet Revolution: Thriving in the Serverless Kubernetes Era
  • Develop a Reverse Proxy With Caching in Go
  • The 4 R’s of Pipeline Reliability: Designing Data Systems That Last
  1. DZone
  2. Coding
  3. Tools
  4. Alexa Skill With TypeScript

Alexa Skill With TypeScript

By 
Xavier Portilla Edo user avatar
Xavier Portilla Edo
DZone Core CORE ·
Apr. 16, 20 · Tutorial
Likes (4)
Comment
Save
Tweet
Share
10.4K Views

Join the DZone community and get the full member experience.

Join For Free

Alexa Skills can be developed using Alexa Lambda functions or a REST API endpoint. A Lambda Function is Amazon's implementation of serverless functions available in AWS. Amazon recommends using Lambda Functions despite the fact that they are not easy to debug. While you can log to a CloudWatch log, you can't hit a breakpoint and step into the code.

This makes the live-debugging of Alexa requests a very hard task. In this post, we will implement a custom Skill for Amazon Alexa by using TypeScript, npm, and AWS Lambda Functions. This skill is basically a Hello World example. With this post, you will be able to create a custom Skill for Amazon Alexa, implement functionality by using TypeScript, and start your custom Skill both from your local computer and from AWS. This post contains materials from different resources that can be seen in the Resources section.

Prerequisites

Here you have the technologies used in this project

  1. Amazon Developer Account - How to get it.
  2. AWS Account - Sign up here for free.
  3. ASK CLI - Install and configure ASK CLI.
  4. Node.js v10.x.
  5. TypeScript (Version >3.0.0).
  6. Visual Studio Code.
  7. npm Package Manager.
  8. Alexa ASK for Node.js (Version >2.7.0).
  9. ngrok.

The Alexa Skills Kit Command Line Interface (ASK CLI) is a tool for you to manage your Alexa Skills and related resources, such as AWS Lambda functions. With ASK CLI, you have access to the Skill Management API, which allows you to manage Alexa skills programmatically from the command line. We will use this powerful tool to create, build, deploy, and manage our Hello World Skill, but now, with TypeScript. Let's start!

Creating the Skill With ASK CLI

If you want how to create your Skill with the ASK CLI, please follow the first step explained in my Node.js Skill sample.

Once we have created the Skill in Node.js, we have to rewrite, or transpile, our code to TypeScript. I have made that work for you. Let's take a look at it!

Project Files

These are the main files of the project:

Shell
xxxxxxxxxx
1
21
 
1
    ├───.ask/
2
    │       config
3
    ├───.vscode/
4
    │       launch.json
5
    ├───hooks/
6
    ├───lambda/
7
    │   └───custom/
8
    │       │   └───build/
9
    │       │   local-debugger.js
10
    │       │   package.json
11
    │       │   tsconfig.json
12
    │       │   tslint.json
13
    │       └───src/
14
    │           ├───index.ts
15
    │           ├───errors/
16
    │           ├───intents/
17
    │           ├───interceptors/
18
    │           └───utilities/
19
    │
20
    ├───models/
21
    └───skill.json
  • .ask: Folder that contains the ASK CLI's config file. This config files will remain empty until we execute the command ask deploy
  • .vscode/launch.json: Launch preferences to run locally your Skill for local testing. This setting launch lambda/custom/src/local-debugger.js. This script runs a server on http://localhost:3001 for debugging the Skill. It is not traspilled to TypeScript because it is not a part of our Lambda. It is a local tool.
  • hooks: A folder that contains the hook scripts. Amazon provides two hooks, post_new_hook and  pre_deploy_hook:
    • post_new_hook: executes after Skill creation. Node.js runs npm install in each sourceDir in skill.json
    • pre_deploy_hook: executed before the Skill deployment. Node.js runs npm install in each sourceDir in skill.json as well.
  • lambda/custom/src: A folder that contains the source code for the skill's AWS Lambda function:
    • index.ts: the lambda main entry point.
    • package.json: this file is core to the Node.js ecosystem and is a basic part of understanding and working with Node.js, npm, and even modern TypeScript.
    • tsconfig.json: configuration file that we are going to use for compiling our TypeScript code.
    • tslint.json: configuration file used by gts (Google TypeScript Style) to check the style of our TypeScript code.
    • local-debugger.js: used for debugging our Skill locally.
    • errors: Folder that contains all error handlers.
    • intents: This one contains all the intent handlers.
    • interceptors: Interceptors' folder with the i18n initialization.
    • utilities: This folder contains the i18n strings, helper functions, constants and TypeScript interfaces.
    • build: The output folder after compiling the TypeScript code.
  • models – A folder that contains interaction models for the skill. Each interaction model is defined in a JSON file named according to the locale. For example, es-ES.json.
  • skill.json – The Skill manifest. One of the most important files in our project.

Lambda Function in TypeScript

The ASK SDK for Node.js makes it easier for you to build highly engaging Skills by allowing you to spend more time implementing features and less time writing boilerplate code.

We are going to use this SDK in TypeScript!

You can find documentation, samples, and helpful links in their official GitHub repository.

The main TypeScript file in our Lambda project is index.ts, located in the lambda/custom/src folder. This file contains all handlers, interceptors, and exports the Skill handler in exports.handler.

The exports.handler function is executed every time AWS Lambda is initiated for this particular function. In theory, an AWS Lambda function is just a single function. This means that we need to define dispatching logic so a single function request can route to appropriate code, hence the handlers.

TypeScript
xxxxxxxxxx
1
25
 
1
  import * as Alexa from 'ask-sdk-core';
2
  import { Launch } from './intents/Launch';
3
  import { Help } from './intents/Help';
4
  import { Stop } from './intents/Stop';
5
  import { Reflector } from './intents/Reflector';
6
  import { Fallback } from './intents/Fallback';
7
  import { HelloWorld } from './intents/HelloWorld';
8
  import { ErrorProcessor } from './errors/ErrorProcessor';
9
  import { SessionEnded } from './intents/SessionEnded';
10
  import { LocalizationRequestInterceptor } from './interceptors/LocalizationRequestInterceptor';
11
12
  export const handler = Alexa.SkillBuilders.custom()
13
    .addRequestHandlers(
14
      // Default intents
15
      Launch,
16
      HelloWorld,
17
      Help,
18
      Stop,
19
      SessionEnded,
20
      Reflector,
21
      Fallback
22
    )
23
    .addErrorHandlers(ErrorProcessor)
24
    .addRequestInterceptors(LocalizationRequestInterceptor)
25
    .lambda();


It is important to take a look into the Launch.ts, imported as Launch above, which is the LaunchRequestHandler handler located in the intents folder as an example of Alexa Skill handler written in TypeScript:

TypeScript
xxxxxxxxxx
1
19
 
1
  import { RequestHandler, HandlerInput } from 'ask-sdk-core';
2
  import { RequestTypes, Strings } from '../utilities/constants';
3
  import { IsType } from '../utilities/helpers';
4
  import i18n from 'i18next';
5
6
  export const Launch: RequestHandler = {
7
    canHandle(handlerInput: HandlerInput) {
8
      return IsType(handlerInput, RequestTypes.Launch);
9
    },
10
    handle(handlerInput: HandlerInput) {
11
      const speechText = i18n.t(Strings.WELCOME_MSG);
12
13
      return handlerInput.responseBuilder
14
        .speak(speechText)
15
        .reprompt(speechText)
16
        .withSimpleCard(i18n.t(Strings.SKILL_NAME), speechText)
17
        .getResponse();
18
    },
19
  };


Building the Skill With Visual Studio Code

Inside package.json, we will almost always find metadata specific to the project. This metadata helps identify the project and acts as a baseline for users and contributors to get information about the project.

Here is how this file looks:

TypeScript
xxxxxxxxxx
1
39
 
1
  {
2
    "name": "alexa-typescript-lambda-helloworld",
3
    "version": "1.0.0",
4
    "description": "Alexa HelloWorld example with TypeScript",
5
    "main": "index.js",
6
    "scripts": {
7
      "clean": "rimraf build",
8
      "compile": "tsc --build tsconfig.json --pretty",
9
      "build-final": "cpy package.json build && cd build/ && npm install --production",
10
      "test": "echo \"No test specified yet\" && exit 0",
11
      "lint-check": "gts check",
12
      "lint-clean": "gts clean",
13
      "lint-fix": "gts fix",
14
      "build": "npm run clean && npm run test && npm run lint-check && npm run compile && npm run build-final"
15
    },
16
    "repository": {
17
      "type": "git",
18
      "url": "https://github.com/xavidop/alexa-typescript-lambda-helloworld.git"
19
    },
20
    "author": "Xavier Portilla Edo",
21
    "license": "Apache-2.0",
22
    "dependencies": {
23
      "ask-sdk-core": "^2.7.0",
24
      "ask-sdk-model": "^1.19.0",
25
      "aws-sdk": "^2.326.0",
26
      "i18next": "^15.0.5",
27
      "i18next-sprintf-postprocessor": "^0.2.2"
28
    },
29
    "devDependencies": {
30
      "@types/node": "^10.10.0",
31
      "@types/i18next-sprintf-postprocessor": "^0.2.0",
32
      "typescript": "^3.0.2",
33
      "cpy-cli": "^3.1.0",
34
      "rimraf": "^3.0.0",
35
      "ts-node": "^7.0.1",
36
      "gts": "^1.1.2"
37
    }
38
  }
39


With TypeScript, we have to compile our code to generate JavaScript. For building our Skill, we can run the following command:

Shell
xxxxxxxxxx
1
 
1
npm run build


This command will execute these actions:

  1. Remove the build folder located in lambda/custom with the command rimraf build. This folder contains the output of compiling the TypeScript code.
  2. Check the style of our TypeScript code with the command gts check using the file tslint.json
  3. Compiles the TypeScript and generates the JavaScript code in the output folder lambda/custom/build using the command tsc --build tsconfig.json --pretty
  4. Copy the package.json to the build folder because is needed to generate the final Lambda code
  5. Finally, it will run the npm install --production in build folder to get the final lambda code that we are going to upload to AWS with the ASK CLI.

As you can see, this process in a TypeScript environment is more complex than in JavaScript.

Running the Skill With Visual Studio Code

The launch.json file in .vscode folder has the configuration for Visual Studio Code, which allows us to run our Lambda locally:

JSON
xxxxxxxxxx
1
20
 
1
  {
2
      "version": "0.2.0",
3
      "configurations": [
4
          {
5
              "type": "node",
6
              "request": "launch",
7
              "name": "Launch Skill",
8
              // Specify path to the downloaded local adapter(for nodejs) file
9
              "program": "${workspaceRoot}/lambda/custom/local-debugger.js",
10
              "args": [
11
                  // port number on your local host where the alexa requests will be routed to
12
                  "--portNumber", "3001",
13
                  // name of your nodejs main skill file
14
                  "--skillEntryFile", "${workspaceRoot}/lambda/custom/build/index.js",
15
                  // name of your lambda handler
16
                  "--lambdaHandler", "handler"
17
              ]
18
          }
19
      ]
20
  }


This configuration file will execute the following command:

Shell
xxxxxxxxxx
1
 
1
node --inspect-brk=28448 lambda\custom\local-debugger.js --portNumber 3001 --skillEntryFile lambda/custom/build/index.js --lambdaHandler handler


This configuration uses the local-debugger.js file, which runs a TCP server listening on http://localhost:3001.

For a new incoming Skill request, a new socket connection is established. From the data received on the socket, the request body is extracted, parsed into JSON, and passed to the Skill invoker's Lambda handler. The response from the Lambda handler is parsed as an HTTP 200 message format, as specified here. The response is written onto the socket connection and returned.

After configuring our launch.json file and understanding how the local debugger works, it is time to click on the play button:

Executing project

Executing project

After executing it, you can send an Alexa POST requests to http://localhost:3001.

Debugging the Skill With Visual Studio Code

Following the steps before, now you can set up breakpoints wherever you want inside all TypeScript files in order to debug your Skill.

Debugging the Skill

Debugging the Skill

Testing Requests Locally

I'm sure you already know the famous tool, Postman. REST APIs have become the new standard in providing a public and secure interface for your service. Though REST has become ubiquitous, it's not always easy to test. Postman makes it easier to test and manage HTTP REST APIs. Postman gives us multiple features to import, test, and share APIs, which will help you and your team be more productive in the long run.

After running your application, you will have an endpoint available at http://localhost:3001. With Postman, you can emulate any Alexa Request.

For example, you can test a LaunchRequest:

JSON
xxxxxxxxxx
1
38
 
1
  {
2
    "version": "1.0",
3
    "session": {
4
      "new": true,
5
      "sessionId": "amzn1.echo-api.session.[unique-value-here]",
6
      "application": {
7
        "applicationId": "amzn1.ask.skill.[unique-value-here]"
8
      },
9
      "user": {
10
        "userId": "amzn1.ask.account.[unique-value-here]"
11
      },
12
      "attributes": {}
13
    },
14
    "context": {
15
      "AudioPlayer": {
16
        "playerActivity": "IDLE"
17
      },
18
      "System": {
19
        "application": {
20
          "applicationId": "amzn1.ask.skill.[unique-value-here]"
21
        },
22
        "user": {
23
          "userId": "amzn1.ask.account.[unique-value-here]"
24
        },
25
        "device": {
26
          "supportedInterfaces": {
27
            "AudioPlayer": {}
28
          }
29
        }
30
      }
31
    },
32
    "request": {
33
      "type": "LaunchRequest",
34
      "requestId": "amzn1.echo-api.request.[unique-value-here]",
35
      "timestamp": "2020-03-22T17:24:44Z",
36
      "locale": "en-US"
37
    }
38
  }

Deploying Your Alexa Skill

With the code ready to go, we need to deploy it on AWS Lambda, so it can be connected to Alexa. Before deploying the Alexa Skill, we can show the config file in the .ask folder. It is empty:

JSON
xxxxxxxxxx
1
 
1
    {
2
      "deploy_settings": {
3
        "default": {
4
          "skill_id": "",
5
          "was_cloned": false,
6
          "merge": {}
7
        }
8
      }
9
    }


Deploy Alexa Skill with ASK CLI:

Shell
xxxxxxxxxx
1
 
1
ask deploy


As the official documentation says:

When the local skill project has never been deployed, ASK CLI creates a new Skill in the development stage for your account, then deploys the Skill project. If applicable, ASK CLI creates one or more new AWS Lambda functions in your AWS account and uploads the Lambda function code. Specifically, ASK CLI does the following:

  1. Looks in your skill project's config file (in the .ask folder, which is in the skill project folder) for an existing skill ID. If the config file does not contain a Skill Id, ASK CLI creates a new Skill using the Skill manifest in the Skill project's skill.json file. Then, it adds the Skill Id to the Skill project's config file.
  2. Looks in your Skill project's manifest (skill.json file) for the Skill's published locales. These are listed in the manifest.publishingInformation.locales object. For each locale, ASK CLI looks in the Skill project's models folder for a corresponding model file (for example, es-ES.json). It then uploads the model to your Skill. ASK CLI waits for the uploaded models to build and then adds each model's eTag to the skill project's config file.
  3. Looks in your Skill project's manifest (skill.json file) for AWS Lambda endpoints. These are listed in the manifest.apis..endpoint or manifest.apis..regions..endpoint objects (for example, manifest.apis.custom.endpoint or manifest.apis.smartHome.regions.NA.endpoint).

    Each endpoint object contains a sourceDir value and optionally a URI value. ASK CLI uploads the contents of the sourceDir folder to the corresponding AWS Lambda function and names the Lambda Function the same as the URI value. For more details about how ASK CLI performs uploads to Lambda, see AWS Lambda deployment details.
  4. Looks in your Skill project folder for in-skill products, and if it finds any, uploads them to your Skill. For more information about in-skill products, see the In-Skill Purchasing Overview.

After the execution of the above command, we will have the config file properly filled:

JSON
xxxxxxxxxx
1
33
 
1
  {
2
    "deploy_settings": {
3
      "default": {
4
        "skill_id": "amzn1.ask.skill.945814d5-9b30-4ee7-ade6-f5ef017a1c17",
5
        "was_cloned": false,
6
        "merge": {},
7
        "resources": {
8
          "manifest": {
9
            "eTag": "ea0bd8c176a560f95a64fe7a1ba99315"
10
          },
11
          "interactionModel": {
12
            "es-ES": {
13
              "eTag": "4a185611054c722446536c5659593aa3"
14
            }
15
          },
16
          "lambda": [
17
            {
18
              "alexaUsage": [
19
                "custom/default"
20
              ],
21
              "arn": "arn:aws:lambda:us-east-1:141568529918:function:ask-custom-alexa-typescript-lambda-helloworld-default",
22
              "awsRegion": "us-east-1",
23
              "codeUri": "lambda/custom/build",
24
              "functionName": "ask-custom-alexa-typescript-lambda-helloworld-default",
25
              "handler": "index.handler",
26
              "revisionId": "477bcf34-937d-4fa4-8588-8db8ec1e7213",
27
              "runtime": "nodejs10.x"
28
            }
29
          ]
30
        }
31
      }
32
    }
33
  }


Note: after rewriting our code to TypeScript, we need to change the codeUri from lambda/custom to lambda/custom/build because of our code compiled from TypeScript to JavaScript goes to the output folder build.

Test Requests Directly From Alexa

Ngrok is a very cool, lightweight tool that creates a secure tunnel on your local machine, along with a public URL you can use for browsing your local site or APIs.

When ngrok is running, it listens on the same port that your local web server is running on and proxies external requests to your local machine

From there, it’s a simple step to get it to listen to your web server. Say you’re running your local web server on port 3001. In terminal, you’d type in: ngrok http 3001. This starts ngrok listening on port 3001 and creates the secure tunnel:

Creating secure tunnel

Creating a secure tunnel

So now you have to go to Alexa Developer console, go to skill > endpoints > https, add the HTTPS URL generated above (e.g. https://20dac120.ngrok.io).

Select the My development endpoint as a sub-domain option from the dropdown and click save endpoint at the top of the page.

Go to the Test tab in the Alexa Developer Console and launch your Skill.

The Alexa Developer Console will send an HTTPS request to the ngrok endpoint (https://20dac120.ngrok.io), which will route it to your Skill running on a Web API server at http://localhost:3001.

Resources

  • Official Alexa Skills Kit Node.js SDK - The Official Node.js SDK Documentation.
  • Official Alexa Skills Kit Documentation - Official Alexa Skills Kit Documentation.

Conclusion

This was a basic tutorial to learn Alexa Skills using Node.js and TypeScript. As you have seen in this example, the Alexa Skill Kit for Node.js and the Alexa Tools like ASK CLI can help us a lot. They also give us the ability to create Skills in TypeScript in an easy way. I hope this example project is useful to you.

That’s all, folks! You can find all the code in my GitHub.

I hope it will be useful! If you have any doubts or questions, do not hesitate to contact me or put a comment below!

Happy coding!

TypeScript Command-line interface code style AWS Lambda Node.js AWS Visual Studio Code Requests Command (computing)

Opinions expressed by DZone contributors are their own.

Related

  • Alexa Skill With Node.js
  • Alexa Skill With Python
  • How to Set up Cypress and Typescript End-to-End Automation Testing Framework From Scratch
  • Alexa Skill With Local DynamoDB

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!