From 8faec9642d62ba762fdfc6f425bfbb1395193fba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matti=20M=C3=A5rds?= Date: Sat, 18 Apr 2015 11:54:49 +0200 Subject: [PATCH 1/3] Added Shopify's go-lua to the list of embeddable scripting languages --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0f1c556..e51f657 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ Join us on IRC at **#awesome-go** on freenode [web access](http://webchat.freeno *Embedding other languages inside your go code* +* [go-lua](https://github.com/Shopify/go-lua) - A port of the Lua 5.2 VM to pure Go * [agora](https://github.com/PuerkitoBio/agora) - Dynamically typed, embeddable programming language in Go * [anko](https://github.com/mattn/anko) - Scriptable interpreter written in Go * [gisp](https://github.com/jcla1/gisp) - Simple LISP in Go From a9f0ab7a67edd6cb476cd50f51557f5a04523bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matti=20M=C3=A5rds?= Date: Sat, 18 Apr 2015 12:17:07 +0200 Subject: [PATCH 2/3] Fixing failing test after last commit by moving the package to correct place. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e51f657..5231a5d 100644 --- a/README.md +++ b/README.md @@ -252,11 +252,11 @@ Join us on IRC at **#awesome-go** on freenode [web access](http://webchat.freeno *Embedding other languages inside your go code* -* [go-lua](https://github.com/Shopify/go-lua) - A port of the Lua 5.2 VM to pure Go * [agora](https://github.com/PuerkitoBio/agora) - Dynamically typed, embeddable programming language in Go * [anko](https://github.com/mattn/anko) - Scriptable interpreter written in Go * [gisp](https://github.com/jcla1/gisp) - Simple LISP in Go * [go-duktape](https://github.com/olebedev/go-duktape) - Duktape JavaScript engine bindings for Go +* [go-lua](https://github.com/Shopify/go-lua) - A port of the Lua 5.2 VM to pure Go * [go-python](https://github.com/sbinet/go-python) - naive go bindings to the CPython C-API * [golua](https://github.com/aarzilli/golua) - Go bindings for Lua C API * [otto](https://github.com/robertkrimen/otto) - A JavaScript interpreter written in Go From 5d3ae17117da3163300797543d04dd8f8a5ce51f Mon Sep 17 00:00:00 2001 From: Cheng-Lung Sung Date: Sat, 18 Apr 2015 20:54:53 +0800 Subject: [PATCH 3/3] Add levigo, Go wrapper for LevelDB. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 11a9e58..81c4ecb 100644 --- a/README.md +++ b/README.md @@ -169,6 +169,7 @@ Join us on IRC at **#awesome-go** on freenode [web access](http://webchat.freeno * [groupcache](https://github.com/golang/groupcache) - Groupcache is a caching and cache-filling library, intended as a replacement for memcached in many cases. * [influxdb](https://github.com/influxdb/influxdb) - Scalable datastore for metrics, events, and real-time analytics * [ledisdb](https://github.com/siddontang/ledisdb) - Ledisdb is a high performance NoSQL like Redis based on LevelDB. +* [levigo](https://github.com/jmhodges/levigo) - Levigo is a Go wrapper for LevelDB. * [tiedot](https://github.com/HouzuoGuo/tiedot) - Your NoSQL database powered by Golang. *Database tools.*