Skip to content

Gurkengewuerz/cefgo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cefgo

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.

Features

  • 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

CEF Version and Compatibility

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

Installation

  1. Download the CEF SDK for your system from Spotify.
  2. 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
  3. Run your binaries inside the Release folder

Usage on macOS

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.

About JS callbacks

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.

DevTools

Set the a RemoteDebuggingPort in the Settings struct. Start your application and point your browser to http://127.0.0.1:<port>.

Updating the CEF Version

The process for updating CEF to a newer version is relatively simple.

  1. Download a new version from Spotify and extract.
  2. Update the headers inside the include folder
  3. Extract the new cef resources and libs to the Release folder
  4. Try to compile the test application: go clean -cache -testcache && CGO_ENABLED=1 go build -o Release/test.exe examples/main.go
  5. Fix any incompatibilities with new APIs until the application compiles.
  6. Push the new version, and update the version listed in this README.