jam/js/ui/botui
2025-07-21 23:38:34 +02:00
..
build Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:38:34 +02:00
examples Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:38:09 +02:00
src Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:02 +02:00
typings Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:49 +02:00
.bumpedrc Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:12 +02:00
.gitignore Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:40 +02:00
.npmignore Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:51 +02:00
CHANGELOG.md Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:14 +02:00
CODE_OF_CONDUCT.md Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:38 +02:00
CONTRIBUTING.md Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:46 +02:00
es6-promise.min.js Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:47 +02:00
font-awesome-css.min.css Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:10 +02:00
fontawesome.css Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:38:13 +02:00
fontawesome.js Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:18 +02:00
Gulpfile.js Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:38:11 +02:00
LICENSE Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:44 +02:00
newsletter.png Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:04 +02:00
package.json Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:16 +02:00
preview.png Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:53 +02:00
README.md Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:06 +02:00
Showcase.md Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:38:15 +02:00
test.html Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:08 +02:00
vue-select.js Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:37:19 +02:00
vue.js Mon 21 Jul 22:43:21 CEST 2025 2025-07-21 23:36:42 +02:00

BotUI

Join the chat at https://gitter.im/BotUIChat/botui npm npm newsletter

A JavaScript framework to create conversational UIs.

Main Site - Read Docs - Examples

Showcase 🎇

We are listing all the cool projects that people are building with BotUI, here. See others' and add yours!

Quick look

preview

<div class="botui-app-container" id="botui-app">
  <bot-ui></bot-ui>
</div>
var botui = new BotUI('botui-app'); // give it the id of container

botui.message.bot({ // show first message
  delay: 200,
  content: 'hello'
}).then(function () {
  return botui.message.bot({ // second one
    delay: 1000, // wait 1 sec.
    content: 'how are you?'
  });
}).then(function () {
  return botui.action.button({ // let user do something
    delay: 1000,
    action: [
      {
        text: 'Good',
        value: 'good'
      },
      {
        text: 'Really Good',
        value: 'really_good'
      }
    ]
  });
}).then(function (res) {
  return botui.message.bot({
    delay: 1000,
    content: 'You are feeling ' + res.text + '!'
  });
});

License

MIT License - Copyrights (c) 2017 - Moin Uddin