• Stars
    star
    100
  • Rank 340,703 (Top 7 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 8 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple message builder for Alexa replies.

Alexa Message Builder

npm npm

Simple message builder for Alexa response.

Installation

Alexa Message Builder is available as a node module on NPM.

Install it by running:

npm install alexa-message-builder --save

Usage

After installing the package, require it in your code:

const AlexaMessageBuilder = require('alexa-message-builder')

or with import* syntax:

import AlexaMessageBuilder from 'alexa-message-builder'

* import syntax is not supported in Node.js, you need to use additional library like Babel to make it work.

After requiring it, you simply need to initialize the class, use any of available methods from the documentation below and call .get() in the end. For Example:

const AlexaMessageBuilder = require('alexa-message-builder')

const message = new AlexaMessageBuilder()
  .addText('Hello from Alexa')
  .get()

will return:

{
  "version": "1.0",
  "response": {
    "shouldEndSession": false,
    "outputSpeech": {
      "type": "PlainText",
      "ssml": "Hello from Alexa"
    }
  }
}

Motivation

Building JSON responses manually is not fun and hard to read for a big JSON files. The main motivation for this message builder is to replace them with a simple and readable syntax. For example, instead of this JSON:

{
  "version": "1.0",
  "response": {
    "shouldEndSession": false,
    "outputSpeech" : {
      "type": "PlainText",
      "text": "Alexa message builder is a simple message builder for Alexa responses"
    },
    "card": {
      "type": "Standard",
      "title": "Alexa Message Builder",
      "text": "Alexa message builder description",
      "image": {
        "smallImageUrl": "http://example.com/small-image-url.png",
        "largeImageUrl": "http://example.com/large-image-url.png"
      }
    }
  }
}

You can write following JavaScript code:

new AlexaMessageBuilder()
  .addText('Alexa message builder is a simple message builder for Alexa responses')
  .addStandardCard('Alexa Message Builder', 'Alexa message builder description', {
    smallImageUrl: 'http://example.com/small-image-url.png',
    largeImageUrl: 'http://example.com/large-image-url.png'
  })
  .keepSession()
  .get()

Package can work with any Node.js project for building Alexa app. For example, it works perfectly with Claudia Bot Builder:

const BotBuilder = require('claudia-bot-builder'),
      AlexaMessageBuilder = require('alexa-message-builder')

module.exports = botBuilder(message => {
  return new AlexaMessageBuilder()
  	.addText('Hello from Alexa')
    .get()
}, {
  platforms: ['alexa']
})

Documentation

Alexa Message Builder is still not covering 100% of Alexa JSON response, but it covers the big part of it. Here's how it works:

Require the package you previously installed from NPM:

const AlexaMessageBuilder = require('alexa-message-builder')

or with import* syntax:

import AlexaMessageBuilder from 'alexa-message-builder'

* import syntax is not supported in Node.js, you need to use additional library like Babel to make it work.

After requiring it, you simply need to initialize the class, use any of available methods from the documentation below and call .get() in the end. For Example:

const AlexaMessageBuilder = require('alexa-message-builder')

const message = new AlexaMessageBuilder()
  .addText('Hello from Alexa')
  .get()

will return:

{
  "version": "1.0",
  "response": {
    "shouldEndSession": false,
    "outputSpeech": {
      "type": "PlainText",
      "text": "Hello from Alexa"
    }
  }
}

Add output speech

This generates the speech that Alexa will say as a reply to your question or command. It can be used as a response to a LaunchRequest or IntentRequest.

You can send either plain text or Speech Synthesis Markup Language (SSML).

Available methods

  • addText
  • addSSML

addText method can receive a plain text and it returns a reference to this for chaining.

Example:

new AlexaMessageBuilder()
  .addText('A text that Alexa will use as a response')
  .get()

This method will throw an error if text is not provided.

addSSML method can receive a SSML message as a string and it returns a reference to this for chaining.

Example:

new AlexaMessageBuilder()
  .addSSML('<speak>This output speech uses SSML.</speak>')
  .get()

This method will throw an error if ssmlMessage is not provided.

Add reprompt

Similar to the output speech, reprompt supports both text and SSML, and it can be used as a response to a LaunchRequest or IntentRequest.

Available methods

  • addText
  • addSSML

addRepromptText method can receive a plain text and it returns a reference to this for chaining.

Example:

new AlexaMessageBuilder()
  .addRepromptText('A reprompt text that Alexa will use as a response')
  .get()

This method will throw an error if text is not provided.

addRepromptSSML method can receive a SSML message as a string and it returns a reference to this for chaining.

Example:

new AlexaMessageBuilder()
  .addRepromptSSML('<speak>This reprompt speech uses SSML.</speak>')
  .get()

This method will throw an error if ssmlMessage is not provided.

Add cards

Alexa supports 3 different types of the cards: Simple, Standard and LinkAccount. First two types are supported by this library.

Cards can only be included when sending a response to a LaunchRequest or IntentRequest.

Add Simple card

Simple card is a card that contains a title and plain text content.

addSimpleCard method can receive title and text and it returns a reference to this for chaining.

Example:

new AlexaMessageBuilder()
  .addText('A text that Alexa will use as a response')
  .addSimpleCard('Card title', 'Card text')
  .get()

This method will throw an error if both title and text are not provided.

Add Standard card

Standard card is a card that contains a title, text content, and an image to display.

addStandardCard method can receive title, text and image object, and it returns a reference to this for chaining.

Example:

new AlexaMessageBuilder()
  .addText('A text that Alexa will use as a response')
  .addStandardCard('Card title', 'Card text', {
    smallImageUrl: 'http://example.com/small-image-url.png',
    largeImageUrl: 'http://example.com/large-image-url.png'
  })
  .get()

This method will throw an error if title, text and imageObject are not provided.

Keep the session opened

Alexa session will be closed by default, if you want to keep it opened use .keepSession() method.

keepSession method will keep the session opened. It doesn't require any params.

Example:

new AlexaMessageBuilder()
  .addText('A text that Alexa will use as a response, and session will not be closed')
  .keepSession()
  .get()

Add session attributes

Alexa also allows you to store some session attributes while the session is opened. To do so with a message builder use .addSessionAttribute(key, value) method.

addSessionAttribute method can receive key and value and it returns a reference to this for chaining. Key needs to be a string and value can be in other types too.

Example:

new AlexaMessageBuilder()
  .addText('A text that Alexa will use as a response, and session will not be closed')
  .addSessionAttribute('someKey', 1)
  .keepSession()
  .get()

TODO

  • Add directives
  • Add LinkAccount cards
  • Check for limits

Contribute

Folder structure

The main body of code is in the lib directory.

The tests are in the spec directory, and should follow the structure of the corresponding source files. All executable test file names should end with -spec, so they will be automatically picked up by npm test. Any additional project files, helper classes etc that must not be directly executed by the test runner should not end with -spec. You can use the spec/helpers directory to store Jasmine helpers, that will be loaded before any test is executed.

Running tests

We use Jasmine for unit and integration tests. Unless there is a very compelling reason to use something different, please continue using Jasmine for tests. The existing tests are in the spec folder. Here are some useful command shortcuts:

Run all the tests:

npm test

Run only some tests:

npm test -- filter=prefix

Get detailed hierarchical test name reporting:

npm test -- full

We use ESLint for syntax consistency, and the linting rules are included in this repository. Running npm test will check the linting rules as well. Please make sure your code has no linting errors before submitting a pull request.

License

MIT - See LICENSE

More Repositories

1

scottyjs

Deploy static websites and single page apps to AWS S3 and CloudFront with a single command
JavaScript
705
star
2

alexa-skill-kit

Library for effortless Alexa Skill development with AWS Lambda
JavaScript
280
star
3

lambda-audio

Run Sound eXchange (SoX), the Swiss Army knife of audio manipulation, with Lame on AWS Lambda
JavaScript
58
star
4

space-explorer-bot

A small FB Messenger chat bot using NASA API and Claudia Bot Builder.
JavaScript
57
star
5

huh

"Virus due to computers having unsafe sex." - Random BOFH-style excuses
JavaScript
33
star
6

vreme

Date formatting by example
JavaScript
31
star
7

souffleur

Simple command line prompt with retry for empty answers
JavaScript
21
star
8

cyrillic-to-latin

Convert cyrillic characters to latin.
JavaScript
20
star
9

fuckyou

Kill any process (╯°□°)╯︵ ssǝɔoɹd
JavaScript
14
star
10

random

4
star
11

crypto-skill

Crypto Skill - an Alexa skill developed at NoSlidesConf 2017 live coding session
JavaScript
4
star
12

holyjs-bot

Simple Telegram bot for HolyJS conference
JavaScript
4
star
13

space-explorer-bot-viber

Space Explorer bot for Viber
JavaScript
4
star
14

laptop-friendly-bot

LaptopFriendly chatbot
JavaScript
4
star
15

artproject-scraper

Get random art and metadata from Google Art Project
JavaScript
3
star
16

web-bot-ui

JavaScript
2
star
17

bartender-skill

Bartender skill for Alexa can recommend a cocktail and give you an info about ingredients and preparation.
JavaScript
2
star
18

serverless-apps-with-typescript-article

[WIP]
TypeScript
1
star
19

website

Personal website
1
star
20

test-video

1
star
21

how-to-build-a-website-that-will-eventually-work-on-mars

Conferece talk
1
star
22

workshop-meetup-app-frontend

JavaScript
1
star
23

amsterdam-facts

A serverless API demo for AmsterdamJS conference
JavaScript
1
star
24

for-conferences

Abstracts and links for videos/slides of my conference talks
1
star
25

fake-css-mouse-tracking

Just an old demo
CSS
1
star
26

serverless-svg-to-png-converter

1
star
27

scottyjs.com

Website for Scotty.js
HTML
1
star
28

flipout

Flip text upside-down
JavaScript
1
star
29

offlineweb.rocks

1
star
30

github-issue-to-slack-channel

Send Github issues to Slack channel via AWS Lambda and NodeJS
JavaScript
1
star