These are simple bindings for CEF C API
in Go.
It's not documented yet, but you can follow the example to figure out how to use. It's pretty simple.
In order to run the examples, the CEF supporting files must be placed beside the executable.
- JS to Go callbacks
- Go to JS eval
- frameless window
- single and sub executable support
- Tested on Windows and Linux (macOS should work using seperate processes)
- window functions (maximize, minimize, show, always on top, etc)
- application icon
This lib is compiled against CEF 94.4.9+g09ee681+chromium-94.0.4606.71 / Chromium 94.0.4606.71 from https://cef-builds.spotifycdn.com/index.html
- Download the CEF SDK for your system from Spotify.
- Locate your installation of cefgo (typically in $GOPATH/src/github.com/Gurkengewuerz/cefgo or $GOPATH/pkg/mod/github.com/Gurkengewuerz/cefgo), and extract the CEF SDK.
Copy include/* to cefgo/include
Copy Release/* to cefgo/Release
Copy Resources/* to cefgo/Release - Run your binaries inside the Release folder
Because i don't have the opportunity to test cefgo on a mac i need your help. Theoretically cefgo should compile on macOS. Because macOS is different the application needs a bit more preperation.
Please read the CEF Wiki carefully and set up your enviroment. Feel free to share your experience.
Callbacks need to be registered before browsers are created. Currently only basic type conversions are supported (undefined/null, bool, int/uint, double, string). Objects and Arrays are possible, but not done. If you are running in multi-process mode (the default - as opposed to single-process) keep in mind the callback will be executed in the browser process and not in the main process.
Set the a RemoteDebuggingPort
in the Settings
struct. Start your application and point your browser to http://127.0.0.1:<port>
.
The process for updating CEF to a newer version is relatively simple.
- Download a new version from Spotify and extract.
- Update the headers inside the include folder
- Extract the new cef resources and libs to the Release folder
- Try to compile the test application:
go clean -cache -testcache && CGO_ENABLED=1 go build -o Release/test.exe examples/main.go
- Fix any incompatibilities with new APIs until the application compiles.
- Push the new version, and update the version listed in this README.