https://github.com/rafael-vasconcellos/websockets-study
experiment with websockets and SSE using express
https://github.com/rafael-vasconcellos/websockets-study
express express-js server-client server-side sse websockets
Last synced: 4 months 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T14:18:18.000Z (over 1 year ago)
- Last Synced: 2025-01-11T13:29:39.397Z (9 months ago)
- Topics: express, express-js, 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

## Instalação
```bash
$ npm install
```## scripts
```bash
# watch mode
$ npm run dev# application build
$ npm run build# production mode
$ npm run start
```