Skip to content

Instantly share code, notes, and snippets.

View maegnes's full-sized avatar

Magnus Buk maegnes

View GitHub Profile
Verifying that +maegnes is my blockchain ID. https://onename.com/maegnes
const Alexa = require('ask-sdk');
let skill;
const HelloWorldHandler = {
canHandle(handlerInput) {
return handlerInput.requestEnvelope.request.type === 'IntentRequest'
&& handlerInput.requestEnvelope.request.intent.name === 'HelloWorldIntent';
},
handle(handlerInput) {
const speechText = 'Hello World!';