https://github.com/frol/wamp-demo
https://github.com/frol/wamp-demo
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/frol/wamp-demo
- Owner: frol
- Created: 2019-08-05T09:11:39.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-19T15:13:47.000Z (almost 6 years ago)
- Last Synced: 2025-04-14T05:39:57.476Z (about 1 year ago)
- Language: TypeScript
- Size: 369 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
WAMP-proto Demo Application
===========================
This demo features the design of an application with interactive UI updates.
The application uses remote-procedure calls (RPC) and publish-subscribe
(PubSub) communication over WebSocket using
[WAMP-proto](https://wamp-proto.org/).
Play
----
### Get Started with Docker-Compose
You need to have Docker and Docker-Compose installed on your host before
proceeding. Once Docker is up and running, pull the repository and run:
```
$ docker-compose up -d
```
This will run WAMP router ([crossbar](https://crossbar.io/)), backend node
written in Python, another backend node written in Node.js, and frontend
server using Next.js framework. Start exploring the project by accessing the
frontend [http://localhost:3000](http://localhost:3000).
To play with individual services without Docker, stop a relevant service via
`docker-compose stop` command, e.g.:
```
$ docker-compose stop backend-python
```
, and follow the setup instuctions from the relevant README file in the service
subfolder.