https://github.com/dgca/websockets-workshop
An hands-on workshop to learn the basics of WebSockets
https://github.com/dgca/websockets-workshop
Last synced: about 2 months ago
JSON representation
An hands-on workshop to learn the basics of WebSockets
- Host: GitHub
- URL: https://github.com/dgca/websockets-workshop
- Owner: dgca
- Created: 2020-01-13T18:00:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-21T17:04:35.000Z (over 6 years ago)
- Last Synced: 2025-01-07T21:51:55.537Z (over 1 year ago)
- Language: JavaScript
- Size: 91.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
marp: true
theme: gaia
---
# Sock it to me
## A websockets code along*
_(*or just follow along, that's cool too)_
---
#### Smol intro
* Two-way communication
* `ws://` and `wss://` protocols
* Event based
* `open` - The connection has been established
* `message` - A message has been received
* `error` - An error occurred
* `closed` - The connection was closed
---
#### What we're building
* A twitter-like app
* Websockets on both front and back end
* UI components are built out, we'll just be adding the functionality
* We're building the server from scratch
* Requirements
* Node 10+
---
# Code time