Typescript Sample Voice App for the Jovo Framework ⭐️
Documentation - CLI - Templates -Contributing - Twitter
app.setHandler({
LAUNCH() {
this.toIntent('HelloWorldIntent');
},
HelloWorldIntent() {
this.ask('Hello World! What\'s your name?', 'Please tell me your name.');
},
MyNameIsIntent() {
this.tell('Hey ' + this.$inputs.name.value + ', nice to meet you!');
},
});
Jovo is a development framework for cross-platform voice apps. Use this repository as a starting point to create a voice application for Amazon Alexa and Google Assistant in Typescript.
🚀 Join our newsletter for free courses on voice app development: www.jovo.tech/newsletter
In this guide, you will learn how to create a "Hello World" voice app for both Amazon Alexa and Google Assistant.
The Jovo CLI is the best way to get started with Jovo development:
$ npm install -g jovo-cli
To learn more, please find the Getting Started Guide in the Jovo Framework Docs.
$ git clone https://github.com/jovotech/jovo-sample-voice-app-typescript.git
$ cd jovo-sample-voice-app-typescript
$ npm install
# Compile Typescript
$ npm tsc
# Run Jovo development server (./dist/index.js)
$ jovo run