├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── binding.cc ├── binding.h ├── examples ├── commonjs │ ├── README.md │ ├── commonjs.go │ ├── module-1.js │ └── module-2.js └── handle-json │ ├── handle-json.go │ └── handle-json.js ├── worker.go └── worker_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/README.md -------------------------------------------------------------------------------- /binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/binding.cc -------------------------------------------------------------------------------- /binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/binding.h -------------------------------------------------------------------------------- /examples/commonjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/examples/commonjs/README.md -------------------------------------------------------------------------------- /examples/commonjs/commonjs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/examples/commonjs/commonjs.go -------------------------------------------------------------------------------- /examples/commonjs/module-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/examples/commonjs/module-1.js -------------------------------------------------------------------------------- /examples/commonjs/module-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/examples/commonjs/module-2.js -------------------------------------------------------------------------------- /examples/handle-json/handle-json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/examples/handle-json/handle-json.go -------------------------------------------------------------------------------- /examples/handle-json/handle-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/examples/handle-json/handle-json.js -------------------------------------------------------------------------------- /worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/worker.go -------------------------------------------------------------------------------- /worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/v8worker/HEAD/worker_test.go --------------------------------------------------------------------------------