Matthias Ladkau 55a21ce779 chore: Upgrading dependencies in chat example | il y a 4 ans | |
---|---|---|
.. | ||
dist | il y a 4 ans | |
src | il y a 5 ans | |
.eslintrc.js | il y a 5 ans | |
.prettierrc.js | il y a 5 ans | |
LICENSE | il y a 5 ans | |
README.md | il y a 5 ans | |
index.html | il y a 5 ans | |
package.json | il y a 4 ans | |
tsconfig.json | il y a 5 ans | |
webpack.config.js | il y a 4 ans |
The chat is an example application demonstrating EliasDB's GraphQL interface. The application uses mutation operations to create chat messages and a subscription to receive new messages.
The subscription uses a WebSocket which is used to "push" new messages from the server to the client. As soon as a client sends a new message to the server the subscription ensures that all clients are updated.
The chat application comes as a compiled .js file in the dist/ directory and should work out of the box.
Point a browser to: https://localhost:9090
To rebuild the application use yarn:
First install all necessary dependencies:
yarn
Then build the application:
yarn build