Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naimikan/guibot
A pure Javascript framework to create conversational UIs
https://github.com/naimikan/guibot
bot bot-framework chat conversational-ui framework gui-builder javascript
Last synced: 28 days ago
JSON representation
A pure Javascript framework to create conversational UIs
- Host: GitHub
- URL: https://github.com/naimikan/guibot
- Owner: Naimikan
- License: mit
- Created: 2018-02-27T16:44:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-03-12T22:25:40.000Z (over 6 years ago)
- Last Synced: 2024-10-08T14:12:12.064Z (about 1 month ago)
- Topics: bot, bot-framework, chat, conversational-ui, framework, gui-builder, javascript
- Language: JavaScript
- Size: 70.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
guibot | API
A pure Javascript framework to create conversational UIs
Resources
Compatibility
Version
Chrome
33+
Chrome for Android
59+
Firefox
29+
Firefox for Android
54+
Opera
20+
Opera Mobile
37+
Opera Mini
No
Safari
7.1+
iOS Safari
8+
Internet Explorer
No
IE Edge
13+
IE Mobile
No
Android Browser
4.4.4+
Blackberry Browser
No
UC Browser for Android
11.4+
Samsung Internet
4+
QQ Browser
1.2+
Baidu Browser
7.12
Get Started
Include the files in your `index.html`:
```html
```
Usage
```javascript
var myChat = new guibot.Chat({
name: 'myChat',
users: [
{
name: 'Robot'
}, {
name: 'Me',
isLocal: true
}
]
});
myChat.say({
message: 'Hi! I\'m a message from local user',
userId: myChat.getLocalUser().id
});
```
Developing
Install dependencies, build the source files and preview
```shell
git clone https://github.com/Naimikan/guibot.git
npm install
grunt && grunt preview
```