Skip to content
/ sse Public

Simple, low-level server-sent event (SSE) handler and client.

Notifications You must be signed in to change notification settings

livebud/sse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a6da3dc · Mar 23, 2025

History

13 Commits
Mar 23, 2025
Mar 23, 2025
Feb 17, 2024
Feb 10, 2024
Feb 10, 2024
Feb 10, 2024
Mar 23, 2025
Mar 23, 2025
Mar 23, 2025
Feb 10, 2024
Feb 10, 2024

Repository files navigation

SSE

Go Reference

Simple, low-level server-sent event (SSE) handler and client.

Features

  • Easy to build live-reloading on top
  • Low-level and customizable
  • Comes with an SSE client

Install

go get github.com/livebud/sse

Example

On the server-side:

package main

import (
	"context"
	"log/slog"
	"net/http"
	"strconv"
	"time"

	"github.com/livebud/sse"
)

func main() {
	ctx := context.Background()
	log := slog.Default()
	handler := sse.New(log)
	go http.ListenAndServe(":8080", handler)
	ticker := time.NewTicker(time.Second)
	defer ticker.Stop()
	count := 0
	for {
		<-ticker.C
		handler.Broadcast(ctx, &sse.Event{
			Data: []byte(strconv.Itoa(count)),
		})
		count++
	}
}

From the browser:

const es = new EventSource("/")
// listen for messages
es.addEventListener("message", function (e) {
  console.log("got message", e.data)
})
// cleanup afterwards (too many zombie clients may cause server to hang)
window.addEventListener("beforeunload", function () {
  es && es.close()
})

Contributors

License

MIT

About

Simple, low-level server-sent event (SSE) handler and client.

Resources

Stars

Watchers

Forks

Packages

No packages published