Go to file
2024-07-14 15:22:55 -04:00
msagent.js msagent.js: Cache parsed ACS data 2024-07-12 19:13:53 -04:00
protocol add keepalive message to prevent proxies closing the connection 2024-07-12 14:57:10 -04:00
server actual username validation lol 2024-07-12 21:20:37 -04:00
webapp Change to SCSS so that rules are automatically backported to older browsers. In the future we can also take advantage of its other features. 2024-07-14 15:22:55 -04:00
.editorconfig First commit 2024-07-01 23:37:57 -04:00
.gitattributes First commit 2024-07-01 23:37:57 -04:00
.gitignore msagent.js: Rewrite decompression to use WASM 2024-07-09 18:53:18 -04:00
.prettierrc.json msagent.js: add wordballoon code 2024-07-02 23:04:45 -04:00
.yarnrc.yml First commit 2024-07-01 23:37:57 -04:00
LICENSE.md add LICENSE.md and fill out readme 2024-07-12 22:28:09 -04:00
package.json Change to SCSS so that rules are automatically backported to older browsers. In the future we can also take advantage of its other features. 2024-07-14 15:22:55 -04:00
README.md add LICENSE.md and fill out readme 2024-07-12 22:28:09 -04:00
yarn.lock Change to SCSS so that rules are automatically backported to older browsers. In the future we can also take advantage of its other features. 2024-07-14 15:22:55 -04:00

msagent-chat

Monorepo for the Computernewb Agent Chat project

Includes:

  • msagent.js/: A JavaScript library for parsing and displaying Microsoft Agent ACS files
  • protocol/ Shared JSON protocol types for the webapp and server
  • webapp/ The Agent Chat Webapp
  • server/ - The Agent Chat Server

Jumpstart

  1. Install dependencies: yarn
  2. Build everything
yarn workspace @msagent-chat/msagent.js build
yarn workspace @msagent-chat/protocol build
yarn workspace @msagent-chat/webapp build
yarn workspace @msagent-chat/server build
  1. Copy server/config.example.toml to server/config.toml and fill out the relevant fields.
  2. Run the server: yarn workspace @msagent-chat/server serve
    • Run the webapp on the development webserver: yarn workspace @msagent-chat/webapp serve; OR
    • Copy the webapp contents from webapp/dist/ to your webroot