Free fake Server-send Events for testing and prototyping.
Go to file
2024-05-11 12:48:18 +02:00
.github Create FUNDING.yml 2022-03-04 11:41:11 +01:00
app/website Update index.html 2022-07-19 22:37:46 +02:00
sse_fake The first commit 2022-03-04 11:33:29 +01:00
static The first commit 2022-03-04 11:33:29 +01:00
.gitignore The first commit 2022-03-04 11:33:29 +01:00
Caddyfile The first commit 2022-03-04 11:33:29 +01:00
django-launcher.sh The first commit 2022-03-04 11:33:29 +01:00
docker-compose.yml The first commit 2022-03-04 11:33:29 +01:00
Dockerfile The first commit 2022-03-04 11:33:29 +01:00
manage.py The first commit 2022-03-04 11:33:29 +01:00
nginx.conf Create nginx.conf 2024-05-11 12:48:18 +02:00
README.md Update README.md 2022-07-19 22:36:51 +02:00
requirements.txt The first commit 2022-03-04 11:33:29 +01:00

SSE Fake

Free fake Server-send Events for testing and prototyping.

Try it

Run this code in JavaScript or from any site:

const sse = new EventSource("https://sse-fake.andros.dev/events/");

sse.onmessage = function(event) {
  console.log(event.data);
}

Or from the terminal:

curl https://sse-fake.andros.dev/events/

Docs (events)

https://sse-fake.andros.dev/


Made with ♥️, Django, Channels and Django EventStream.

Author: Andros Fenollosa