v8worker2 icon indicating copy to clipboard operation
v8worker2 copied to clipboard

Minimal golang binding to V8

Results 15 v8worker2 issues
Sort by recently updated
recently updated
newest added

Could you update V8 to the latest version?

I'm having some trouble installing the package. I'm using the go get command but with the -d flag. I'm on OSX and noticed that the package doesn't make its way...

Run this test app: main.go ```go package main import ( "github.com/ry/v8worker2" ) func main() { worker := v8worker2.New(func(msg []byte) []byte { return nil }) err := worker.Load("codeWithRecv.js", ` V8Worker2.recv(function(msg) {...

Run this test app: main.go ```go package main import ( "fmt" "github.com/ry/v8worker2" ) func main() { for i := 1; i

Thank you for the work you've put into this library. Love the simplicity! I was wondering if it is possible to run webassembly code? I'm researching the possibility of running...

OS: macOS 10.13 ``` Traceback (most recent call last): File "./build.py", line 152, in main() File "./build.py", line 88, in main lib_fn = Rebuild() File "./build.py", line 103, in Rebuild...

It'd be good if at least on semantic version would be present in the repo, so to include as a module in a go build Thank you

The shallow setting this is the cause of those two errors: ``` Submodule 'depot_tools' (https://chromium.googlesource.com/chromium/tools/depot_tools.git) registered for path 'depot_tools' Submodule 'v8' (https://github.com/v8/v8.git) registered for path 'v8' Cloning into '/go/src/github.com/ry/v8worker2/depot_tools'... Cloning...

The very first time one tries to do a go get, it fails with: ``` # pkg-config --cflags -- v8.pc Failed to open 'v8.pc': No such file or directory No...

Add a worker.SetNearHeapLimitCallback API to monitor third-party code memory usag. This API providing an opportunity to terminate when memory exceeds a threshold. eg: ```golang package main import "fmt" import "time"...