Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafael-vasconcellos/websockets-study
experiment with websockets and SSE using express
https://github.com/rafael-vasconcellos/websockets-study
server-client server-side sse websockets
Last synced: 3 days ago
JSON representation
experiment with websockets and SSE using express
- Host: GitHub
- URL: https://github.com/rafael-vasconcellos/websockets-study
- Owner: rafael-vasconcellos
- Created: 2023-11-24T18:11:53.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-04-08T14:18:18.000Z (7 months ago)
- Last Synced: 2024-04-08T17:40:43.277Z (7 months ago)
- Topics: server-client, server-side, sse, websockets
- Language: TypeScript
- Homepage:
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WebSockets and SSE study
Estudo básico de WebSockets e SSE (Server-Sent Events), eles são usados aqui para reproduzir o efeito dos chatbots de escrever um texto letra por letra. uma pequena interface gráfica esqueleto é usada para interagir com o servidor Websocket ou SSE, usando express
## interface
![screenshot da interface](assets/screenshot.png)
## Instalação
```bash
$ npm install
```## scripts
```bash
# watch mode
$ npm run dev# application build
$ npm run build# production mode
$ npm run start
```