The Assembly Line
From code to compiled binary to dynamic admin interface. Watch how a BlitzPress plugin moves through the system. Scroll to begin.
package main
import "github.com/blitzpress/sdk"
// The origin
1. Authoring
Write standard Go code against a stable, typed SDK. No messy global hooks.
go build -buildmode=plugin
2. Compilation
The Go compiler turns your code into a self-contained `.so` file. Safe, fast, immutable.
Core Binary
3. Core Mounting
BlitzPress discovers the `.so` file, validates its manifest, and mounts its API routes natively.
New Widget
4. Admin Extension
SolidJS modules load at runtime. Your plugin's UI injects directly into the admin dashboard seamlessly.
.so
End of line.