Added four scripting languages

I created a section for libraries that allow you to embed other languages into your code and added golua, go-python, otto and v8-go as active/stable examples of such projects.

There also is mattn/go-v8 but chose the one from idada because of the higher amount of activity and contributors.

I also looked through the corresponding section in the go-wiki but most of the other projects are stale since a couple of years.
This commit is contained in:
Henry 2014-07-08 01:31:47 +02:00
parent af0c6a106d
commit 46f5c37778

View File

@ -380,6 +380,16 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a
* [go generate](https://docs.google.com/document/d/1V03LUfjSADDooDMhe-_K59EgpTEm3V8uvQRuNMAEnjg/edit) - A proposed code generation syntax from Rob Pike.
## Embeddable Scripting Languages
*Embedding other languages inside your go code*
* [golua](https://github.com/aarzilli/golua) - Go bindings for Lua C API
* [go-python](https://github.com/sbinet/go-python) - naive go bindings to the CPython C-API
* [otto](https://github.com/robertkrimen/otto) - A JavaScript interpreter written in Go
* [v8-go](https://github.com/idada/v8.go/) - V8 JavaScript engine bindings for Go

# Resources
Where to discover new Go libraries.