Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brinobruno/server-sent-events
https://github.com/brinobruno/server-sent-events
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/brinobruno/server-sent-events
- Owner: brinobruno
- Created: 2024-02-15T18:47:11.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-16T12:40:35.000Z (11 months ago)
- Last Synced: 2025-01-06T18:18:53.334Z (16 days ago)
- Language: TypeScript
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SSE: Server Sent Events
Proof of concept...### Getting started
application is divided into client (React-ts vite template) and server (Node with fastify-ts), the idea is to run them separately in different localhost ports (5173 for client and 3000 for server).Open a terminal:
```bash
cd client
pnpm install
pnpm dev
```Split a second terminal:
```bash
cd server
pnpm install
pnpm dev
```Open browser at `localhost:5173`