2019-03-05 22:08:54 +00:00
|
|
|
<p align="center">
|
2020-01-09 20:52:19 +00:00
|
|
|
<img src="https://raw.githubusercontent.com/d5/tengolang-share/master/logo_400.png" width="200" height="200">
|
2019-03-05 22:08:54 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
# The Tengo Language
|
|
|
|
|
2020-01-09 20:52:19 +00:00
|
|
|
[![GoDoc](https://godoc.org/github.com/d5/tengo?status.svg)](https://godoc.org/github.com/d5/tengo)
|
2020-05-23 22:06:21 +00:00
|
|
|
![test](https://github.com/d5/tengo/workflows/test/badge.svg)
|
2019-03-05 22:08:54 +00:00
|
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/d5/tengo)](https://goreportcard.com/report/github.com/d5/tengo)
|
|
|
|
|
|
|
|
**Tengo is a small, dynamic, fast, secure script language for Go.**
|
|
|
|
|
2020-01-09 20:52:19 +00:00
|
|
|
Tengo is **[fast](#benchmark)** and secure because it's compiled/executed as
|
|
|
|
bytecode on stack-based VM that's written in native Go.
|
2019-03-05 22:08:54 +00:00
|
|
|
|
|
|
|
```golang
|
|
|
|
/* The Tengo Language */
|
2019-04-06 20:18:25 +00:00
|
|
|
fmt := import("fmt")
|
|
|
|
|
2019-03-05 22:08:54 +00:00
|
|
|
each := func(seq, fn) {
|
|
|
|
for x in seq { fn(x) }
|
|
|
|
}
|
|
|
|
|
|
|
|
sum := func(init, seq) {
|
|
|
|
each(seq, func(x) { init += x })
|
|
|
|
return init
|
|
|
|
}
|
|
|
|
|
2019-04-06 20:18:25 +00:00
|
|
|
fmt.println(sum(0, [1, 2, 3])) // "6"
|
|
|
|
fmt.println(sum("", [1, 2, 3])) // "123"
|
2019-03-05 22:08:54 +00:00
|
|
|
```
|
|
|
|
|
2020-01-09 20:52:19 +00:00
|
|
|
> Test this Tengo code in the
|
|
|
|
> [Tengo Playground](https://tengolang.com/?s=0c8d5d0d88f2795a7093d7f35ae12c3afa17bea3)
|
2019-03-05 22:08:54 +00:00
|
|
|
|
|
|
|
## Features
|
|
|
|
|
2020-01-09 20:52:19 +00:00
|
|
|
- Simple and highly readable
|
|
|
|
[Syntax](https://github.com/d5/tengo/blob/master/docs/tutorial.md)
|
2019-03-05 22:08:54 +00:00
|
|
|
- Dynamic typing with type coercion
|
|
|
|
- Higher-order functions and closures
|
|
|
|
- Immutable values
|
2020-01-09 20:52:19 +00:00
|
|
|
- [Securely Embeddable](https://github.com/d5/tengo/blob/master/docs/interoperability.md)
|
|
|
|
and [Extensible](https://github.com/d5/tengo/blob/master/docs/objects.md)
|
2019-03-05 22:08:54 +00:00
|
|
|
- Compiler/runtime written in native Go _(no external deps or cgo)_
|
2020-01-09 20:52:19 +00:00
|
|
|
- Executable as a
|
|
|
|
[standalone](https://github.com/d5/tengo/blob/master/docs/tengo-cli.md)
|
|
|
|
language / REPL
|
|
|
|
- Use cases: rules engine, [state machine](https://github.com/d5/go-fsm),
|
|
|
|
data pipeline, [transpiler](https://github.com/d5/tengo2lua)
|
2019-03-05 22:08:54 +00:00
|
|
|
|
|
|
|
## Benchmark
|
|
|
|
|
2020-05-23 22:06:21 +00:00
|
|
|
| | fib(35) | fibt(35) | Language (Type) |
|
2019-03-05 22:08:54 +00:00
|
|
|
| :--- | ---: | ---: | :---: |
|
2020-05-23 22:06:21 +00:00
|
|
|
| [**Tengo**](https://github.com/d5/tengo) | `2,931ms` | `4ms` | Tengo (VM) |
|
|
|
|
| [go-lua](https://github.com/Shopify/go-lua) | `4,824ms` | `4ms` | Lua (VM) |
|
|
|
|
| [GopherLua](https://github.com/yuin/gopher-lua) | `5,365ms` | `4ms` | Lua (VM) |
|
|
|
|
| [goja](https://github.com/dop251/goja) | `5,533ms` | `5ms` | JavaScript (VM) |
|
|
|
|
| [starlark-go](https://github.com/google/starlark-go) | `11,495ms` | `5ms` | Starlark (Interpreter) |
|
|
|
|
| [Yaegi](https://github.com/containous/yaegi) | `15,645ms` | `12ms` | Yaegi (Interpreter) |
|
|
|
|
| [gpython](https://github.com/go-python/gpython) | `16,322ms` | `5ms` | Python (Interpreter) |
|
|
|
|
| [otto](https://github.com/robertkrimen/otto) | `73,093ms` | `10ms` | JavaScript (Interpreter) |
|
|
|
|
| [Anko](https://github.com/mattn/anko) | `79,809ms` | `8ms` | Anko (Interpreter) |
|
|
|
|
| - | - | - | - |
|
|
|
|
| Go | `53ms` | `3ms` | Go (Native) |
|
|
|
|
| Lua | `1,612ms` | `3ms` | Lua (Native) |
|
|
|
|
| Python | `2,632ms` | `23ms` | Python 2 (Native) |
|
2019-03-05 22:08:54 +00:00
|
|
|
|
2020-01-09 20:52:19 +00:00
|
|
|
_* [fib(35)](https://github.com/d5/tengobench/blob/master/code/fib.tengo):
|
|
|
|
Fibonacci(35)_
|
|
|
|
_* [fibt(35)](https://github.com/d5/tengobench/blob/master/code/fibtc.tengo):
|
|
|
|
[tail-call](https://en.wikipedia.org/wiki/Tail_call) version of Fibonacci(35)_
|
2019-03-05 22:08:54 +00:00
|
|
|
_* **Go** does not read the source code from file, while all other cases do_
|
|
|
|
_* See [here](https://github.com/d5/tengobench) for commands/codes used_
|
|
|
|
|
2020-01-09 20:52:19 +00:00
|
|
|
## Quick Start
|
|
|
|
|
2020-03-28 22:41:35 +00:00
|
|
|
```
|
|
|
|
go get github.com/d5/tengo/v2
|
|
|
|
```
|
|
|
|
|
2020-01-09 20:52:19 +00:00
|
|
|
A simple Go example code that compiles/runs Tengo script code with some input/output values:
|
|
|
|
|
|
|
|
```golang
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/d5/tengo/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Tengo script code
|
|
|
|
src := `
|
|
|
|
each := func(seq, fn) {
|
|
|
|
for x in seq { fn(x) }
|
|
|
|
}
|
|
|
|
|
|
|
|
sum := 0
|
|
|
|
mul := 1
|
|
|
|
each([a, b, c, d], func(x) {
|
|
|
|
sum += x
|
|
|
|
mul *= x
|
|
|
|
})`
|
|
|
|
|
|
|
|
// create a new Script instance
|
|
|
|
script := tengo.NewScript([]byte(src))
|
|
|
|
|
|
|
|
// set values
|
|
|
|
_ = script.Add("a", 1)
|
|
|
|
_ = script.Add("b", 9)
|
|
|
|
_ = script.Add("c", 8)
|
|
|
|
_ = script.Add("d", 4)
|
|
|
|
|
|
|
|
// run the script
|
|
|
|
compiled, err := script.RunContext(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// retrieve values
|
|
|
|
sum := compiled.Get("sum")
|
|
|
|
mul := compiled.Get("mul")
|
|
|
|
fmt.Println(sum, mul) // "22 288"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-03-05 22:08:54 +00:00
|
|
|
## References
|
|
|
|
|
|
|
|
- [Language Syntax](https://github.com/d5/tengo/blob/master/docs/tutorial.md)
|
|
|
|
- [Object Types](https://github.com/d5/tengo/blob/master/docs/objects.md)
|
2020-01-09 20:52:19 +00:00
|
|
|
- [Runtime Types](https://github.com/d5/tengo/blob/master/docs/runtime-types.md)
|
|
|
|
and [Operators](https://github.com/d5/tengo/blob/master/docs/operators.md)
|
2019-03-05 22:08:54 +00:00
|
|
|
- [Builtin Functions](https://github.com/d5/tengo/blob/master/docs/builtins.md)
|
|
|
|
- [Interoperability](https://github.com/d5/tengo/blob/master/docs/interoperability.md)
|
|
|
|
- [Tengo CLI](https://github.com/d5/tengo/blob/master/docs/tengo-cli.md)
|
|
|
|
- [Standard Library](https://github.com/d5/tengo/blob/master/docs/stdlib.md)
|
2020-05-23 22:06:21 +00:00
|
|
|
- Syntax Highlighters: [VSCode](https://github.com/lissein/vscode-tengo), [Atom](https://github.com/d5/tengo-atom)
|
|
|
|
- **Why the name Tengo?** It's from [1Q84](https://en.wikipedia.org/wiki/1Q84).
|
|
|
|
|
|
|
|
##
|
|
|
|
|
|
|
|
:hearts: Like writing Go code? Come work at Skool. [We're hiring!](https://jobs.lever.co/skool)
|
|
|
|
|