Voxa框架代码片段
使用Voxa框架加速您的Alexa技能开发代码片段
详细信息
安装
- 总数 64
- Win 39
- Mac 12
- Linux 13
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
README
Voxa框架代码片段
这个扩展程序为您提供了Sublime Text的代码片段,以加速您使用由Voxa框架(由RAIN开发)开发的Alexa技能。
安装
安装这些代码片段的简单方法是通过Package Control。搜索“Voxa框架代码片段”。如果您想手动安装,我将假设您知道需要做什么。
代码片段
{ }
内的每个空格代表这将被推入下一行。
$
代表每个步骤之后的tab
。
状态和意图
前缀 | 方法 |
---|---|
onintentVoxa→ |
$1:skill.onIntent('$2', ($3:alexaEvent) => { $4 }); |
launchintentVoxa→ |
$1:skill.onIntent('LaunchIntent', ($2:alexaEvent) => { $3 }); |
helpintentVoxa→ |
$1:skill.onIntent('AMAZON.HelpIntent', ($2:alexaEvent) => { $3 }); |
repeatintentVoxa→ |
$1:skill.onIntent('AMAZON.RepeatIntent', ($2:alexaEvent) => { $3 }); |
startoverintentVoxa→ |
$1:skill.onIntent('AMAZON.StartOverIntent', ($2:alexaEvent) => { $3 }); |
onstateVoxa→ |
$1:skill.onState('$2', ($3:alexaEvent) => { $4 }); |
entryVoxa→ |
$1:skill.onState('entry', { $2 }); |
replyVoxa→ |
return { reply: '$1', to: '$2' }; |
toVoxa→ |
return { to: '$1' }; |
ifyesVoxa→ |
if (alexaEvent.intent.name === 'AMAZON.YesIntent') { $1 } |
ifnoVoxa→ |
if (alexaEvent.intent.name === 'AMAZON.NoIntent') { $1 } |
ifintentnameVoxa→ |
if (alexaEvent.intent.name === '$1') { $2 } |
文件模板代码
viewsVoxa
const views = (function views() {
return {
$1
};
}());
askVoxa
$1:ResponseName: {
ask: '$2',
reprompt: '$3',
},
tellVoxa
$1:ResponseName: {
tell: '$2',
},
sayVoxa
$1:ResponseName: {
say: '$2',
},
variablesVoxa
module.exports = {
$1:variableName: model => model.$1:variableName,
},
registerVoxa
exports.register = function register(skill) {
$1
};
mainstatemachineVoxa
const Voxa = require('voxa');
const views = require('${1:./views}');
const variables = require('${2:./variables}');
const states = require('${3:./states}');
const skill = new Voxa({ variables, views });
states.register(skill);
module.exports = skill;
serverVoxa
const skill = require('${1:./skill/MainStateMachine}');
const config = require('${2:./config}');
skill.startServer(config.server.port);
lambdaVoxa
const skill = require('${1:./skill/MainStateMachine}');
exports.handler = skill.lambda();