barakd / jovo-framework

πŸ”ˆ The React for Voice and Chat: Build Apps for Alexa, Google Assistant, Messenger, Instagram, the Web, and more

Home Page:https://www.jovo.tech

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jovo Framework: The React for Voice and Chat Apps

NEWS: We just launched Jovo v4

Jovo Framework

Website - Docs - Marketplace - Template

Build conversational and multimodal experiences for the web, Alexa, Google Assistant, Messenger, Instagram, Google Business Messages, mobile apps, and more. Fully customizable and open source. Works with TypeScript and JavaScript.

@Component()
export class LoveHatePizzaComponent extends BaseComponent {
  START() {
    return this.$send(YesNoOutput, { message: 'Do you like pizza?' });
  }

  @Intents(['YesIntent'])
  lovesPizza() {
    return this.$send({ message: 'Yes! I love pizza, too.', listen: false });
  }

  @Intents(['NoIntent'])
  hatesPizza() {
    return this.$send({ message: `That's OK! Not everyone likes pizza.`, listen: false });
  }
}

Getting Started

Learn more in our Getting Started Guide.

Install the Jovo CLI:

$ npm install -g @jovotech/cli

Create a new Jovo project (find the v4 template here):

$ jovo new <directory>

Go into project directory and run the Jovo development server:

# Go into project directory (replace <directory> with your folder)
$ cd <directory>

# Run local development server
$ jovo run

# Press "." to open the Jovo Debugger

Sponsors

We're glad to be supported by respected companies and individuals in the voice-first and conversational AI industry. See our Open Collective to learn more.

Gold Sponsors

Silver Sponsors

Bronze Sponsors

Find all supporters in our BACKERS.md file.

Support Jovo on Open Collective

About

πŸ”ˆ The React for Voice and Chat: Build Apps for Alexa, Google Assistant, Messenger, Instagram, the Web, and more

https://www.jovo.tech

License:Apache License 2.0


Languages

Language:TypeScript 98.0%Language:JavaScript 1.6%Language:HTML 0.4%Language:Handlebars 0.0%