Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abcum/webkit
C bindings to webkit for Go
https://github.com/abcum/webkit
cgo go golang golang-library webkit webkit2gtk
Last synced: about 1 month ago
JSON representation
C bindings to webkit for Go
- Host: GitHub
- URL: https://github.com/abcum/webkit
- Owner: abcum
- License: apache-2.0
- Created: 2017-03-20T14:09:36.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-06T13:00:47.000Z (almost 8 years ago)
- Last Synced: 2024-11-14T19:03:09.342Z (3 months ago)
- Topics: cgo, go, golang, golang-library, webkit, webkit2gtk
- Language: Go
- Homepage:
- Size: 23.4 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webkit
C bindings to webkit for Go (Golang).
[![](https://img.shields.io/circleci/token/abf9e47762afcbbd936490819683ad44594f67b5/project/abcum/webkit/master.svg?style=flat-square)](https://circleci.com/gh/abcum/webkit) [![](https://img.shields.io/badge/status-beta-ff00bb.svg?style=flat-square)](https://github.com/abcum/webkit) [![](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/abcum/webkit) [![](https://goreportcard.com/badge/github.com/abcum/webkit?style=flat-square)](https://goreportcard.com/report/github.com/abcum/webkit) [![](https://img.shields.io/badge/license-Apache_License_2.0-00bfff.svg?style=flat-square)](https://github.com/abcum/webkit)
#### Installation
```bash
go get github.com/abcum/webkit
```#### Building
[![](https://img.shields.io/badge/api-docs-ffbb00.svg?style=flat-square)](https://webkitgtk.org/reference/webkit2gtk/stable/index.html) [![](https://img.shields.io/badge/version-webkit2gtk+2.14-0ffbbb.svg?style=flat-square)](https://webkitgtk.org/reference/webkit2gtk/stable/api-index-2-14.html)
```bash
go install -tags 'webkit_2_14'
```[![](https://img.shields.io/badge/api-docs-ffbb00.svg?style=flat-square)](https://webkitgtk.org/reference/webkit2gtk/stable/index.html) [![](https://img.shields.io/badge/version-webkit2gtk+2.16-0ffbbb.svg?style=flat-square)](https://webkitgtk.org/reference/webkit2gtk/stable/api-index-2-16.html)
```bash
go install -tags 'webkit_2_16'
```#### Requirements
- Golang >= 1.2
- GTK+ >= 3.0
- WebKit2GTK+ >= 2.0.0_Alpine Linux_
```bash
apk --update install gcc musl-dev gtk+3.0-dev webkit2gtk-dev
```_Ubuntu 13.10_
```bash
sudo add-apt-repository ppa:gnome3-team/gnome3-staging
sudo apt-get update
sudo apt-get install libwebkit2gtk-3.0-dev
```_Ubuntu 13.04_
```bash
sudo add-apt-repository ppa:gnome3-team/gnome3
sudo apt-get update
sudo apt-get install libwebkit2gtk-3.0-dev
```_Arch Linux_
```bash
sudo pacman -S webkitgtk
```#### Copyright
For WebKit licensing and copyright information, [click here](https://webkit.org/licensing-webkit/).