Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tutorialedge/go-websocket-course
https://github.com/tutorialedge/go-websocket-course
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tutorialedge/go-websocket-course
- Owner: TutorialEdge
- Created: 2023-03-14T20:41:20.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-17T08:18:41.000Z (almost 2 years ago)
- Last Synced: 2024-12-09T01:37:09.206Z (17 days ago)
- Language: Go
- Size: 31.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Go WebSocket course
=======================Building a Real-Time Football Score App in Go and Vue.js.
## Frontend Overview
Frontend Web App will be built in Vue.js - when a client connects, it'll
populate a list of games that you can click on to follow live scores.You'll then connect to a specific game which will receive events from the
server every time a new event happens.This will be fairly simple, and we'll mostly just be using it as a way to
demonstrate us connecting to specific channels.## Running Locally
```
$ docker run -d --hostname my-rabbit --name some-rabbit -p 15672:15672 -p 5672:5672 rabbitmq:3-management
$ go run cmd/server/main.go
```