├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── delivery-bot ├── delivery-bot.js └── index.html ├── git-stars-bot ├── index.html └── stars-bot.js ├── hello-world-webpack ├── app.js ├── build.js ├── index.html ├── package.json └── webpack.config.js ├── hello-world-with-html ├── hello-world.js └── index.html ├── hello-world ├── hello-world.js └── index.html ├── index.html ├── package.json ├── reminder-bot ├── index.html └── reminder-bot.js ├── rock-paper-scissors ├── index.html └── rock-paper-scissors-bot.js ├── style.css ├── thermostat-bot ├── index.html └── thermostat-bot.js └── tmpl-index.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | examples.botui.org -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/README.md -------------------------------------------------------------------------------- /delivery-bot/delivery-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/delivery-bot/delivery-bot.js -------------------------------------------------------------------------------- /delivery-bot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/delivery-bot/index.html -------------------------------------------------------------------------------- /git-stars-bot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/git-stars-bot/index.html -------------------------------------------------------------------------------- /git-stars-bot/stars-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/git-stars-bot/stars-bot.js -------------------------------------------------------------------------------- /hello-world-webpack/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world-webpack/app.js -------------------------------------------------------------------------------- /hello-world-webpack/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world-webpack/build.js -------------------------------------------------------------------------------- /hello-world-webpack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world-webpack/index.html -------------------------------------------------------------------------------- /hello-world-webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world-webpack/package.json -------------------------------------------------------------------------------- /hello-world-webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world-webpack/webpack.config.js -------------------------------------------------------------------------------- /hello-world-with-html/hello-world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world-with-html/hello-world.js -------------------------------------------------------------------------------- /hello-world-with-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world-with-html/index.html -------------------------------------------------------------------------------- /hello-world/hello-world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world/hello-world.js -------------------------------------------------------------------------------- /hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/hello-world/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/package.json -------------------------------------------------------------------------------- /reminder-bot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/reminder-bot/index.html -------------------------------------------------------------------------------- /reminder-bot/reminder-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/reminder-bot/reminder-bot.js -------------------------------------------------------------------------------- /rock-paper-scissors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/rock-paper-scissors/index.html -------------------------------------------------------------------------------- /rock-paper-scissors/rock-paper-scissors-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/rock-paper-scissors/rock-paper-scissors-bot.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/style.css -------------------------------------------------------------------------------- /thermostat-bot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/thermostat-bot/index.html -------------------------------------------------------------------------------- /thermostat-bot/thermostat-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/thermostat-bot/thermostat-bot.js -------------------------------------------------------------------------------- /tmpl-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botui/botui-examples/HEAD/tmpl-index.html --------------------------------------------------------------------------------