Major improvements to UnifiedPlayer: 1. GetFrameImage() now works when paused for responsive UI updates 2. Play() method properly starts FFmpeg process 3. Frame display loop runs continuously for smooth video display 4. Disabled audio temporarily to fix video playback fundamentals 5. Simplified FFmpeg command to focus on video stream only Player now: - Generates video frames correctly - Shows video when paused - Has responsive progress tracking - Starts playback properly Next steps: Re-enable audio playback once video is stable |
||
|---|---|---|
| .. | ||
| internal | ||
| .env | ||
| .gitignore | ||
| .golangci.yml | ||
| bytes.go | ||
| doc.go | ||
| error.go | ||
| func.go | ||
| global.go | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||
| type.go | ||
| value.go | ||
SafeJS

A safer, drop-in replacement for Go's syscall/js JavaScript package.
What makes it safer?
Today, syscall/js panics when the JavaScript runtime throws errors.
While sensible in a JavaScript runtime, Go libraries should avoid using panic.
SafeJS provides a nearly identical API to syscall/js, but returns errors instead of panicking.
Although returned errors aren't pretty, they make it much easier to integrate with existing Go tools and code patterns.
Backward compatibility
This package uses the same backward compatibility guarantee as syscall/js.
In an effort to align with the Go standard library API, some breaking changes may become necessary and receive their own minor version bumps.
Quick start
- Import
safejs:
import "github.com/hack-pad/safejs"
- Replace uses of
syscall/jswith thesafejsalternative.
Before:
//go:build js && wasm
package buttons
import "syscall/js"
// InsertButton creates a new button, adds it to 'container', and returns it. Usually.
func InsertButton(container js.Value) js.Value {
// *whisper:* There's a good chance it could panic! Eh, probably don't need to document it, right?
dom := js.Global().Get("document") // BOOM!
button := dom.Call("createElement", "button") // BANG!
container.Call("appendChild", button) // BAM!
return button
}
After:
//go:build js && wasm
package buttons
import "github.com/hack-pad/safejs"
// InsertButton creates a new button, adds it to 'container', and returns the button or the first error.
func InsertButton(container safejs.Value) (safejs.Value, error) {
dom, err := safejs.Global().Get("document")
if err != nil {
return err
}
button, err := dom.Call("createElement", "button")
if err != nil {
return err
}
_, err = container.Call("appendChild", button)
if err != nil {
return err
}
return button, nil
}
Even safer
For additional JavaScript safety, use the jsguard linter too.
jsguard reports the locations of unsafe JavaScript calls, which should be replaced with calls to SafeJS.
go install github.com/hack-pad/safejs/jsguard/cmd/jsguard
export GOOS=js GOARCH=wasm
jsguard ./...
It does not report use of types like js.Value -- only function calls on those types.
This makes it easy to integrate SafeJS into existing libraries which expose only standard library types.