Skip to content

Instantly share code, notes, and snippets.

View AnshumanTripathi's full-sized avatar
💡
Keeping the lights on.

Anshuman Tripathi AnshumanTripathi

💡
Keeping the lights on.
View GitHub Profile
@AnshumanTripathi
AnshumanTripathi / index.js
Last active May 16, 2017 01:59
UIPro Alexa Interaction Model and Lambda Function
var http = require('http');
exports.handler = function(event, context, callback) {
try {
if (event.session.new) {
console.log('Hello from Lambda');
}
switch (event.request.type) {
case "LaunchRequest":