sse-server 0.0.2

SSE server using Actix Web
Documentation
1
2
3
4
5
6
build:
	PORT=8080 cargo run
rusty:
	curl -S -v --header "Content-Type: application/json" POST --data '{"event":"user", "data":{"user":"Rusty"}}'  http://localhost:8080/insert
client:
	cd example && npm i && npm start