glua

Full-featured Lua VM for nodejs and the browser. Based on github.com/yuin/gopher-lua.


Keywords
lua vm compiler gopher-lua gopherjs, gopherjs, lua
License
MIT
Install
npm install glua@1.0.2

Documentation

glua npm badge

glua is what happens when you compile https://github.com/J-J-J/goluajit, a Lua VM written in Go (based on https://github.com/yuin/gopher-lua), to Javascript. It works right now and you can use it for most awesomeness. You don't have to know Go or even click on the link above, just use this library in your favorite JS environment.

example:

const glua = require('glua')

glua.run(`
  print(12, 'lala', true)
`) // will print these values

var result

glua.runWithGlobals({
  diff: function (a, b) {
    return Math.abs(Math.abs(b) - Math.abs(a))
  },
  saveResult: function (value) {
    result = value
  }
}, `
  local a = 23
  local b = 74
  local difference = diff(a, b)
  saveResult(difference)
`)

console.log('the result is: ', result)

glua.runWithModules({
  fooprinter: `
local fooprinter = {}

function fooprinter.print (foo)
  print('foo value is: ', foo)
end

return fooprinter
  `
}, {
  foo: 264857
}, `
local fooprinter = require('fooprinter')
print('printing foo...')
fooprinter.print(foo)
`)

try it now

Visit https://raw.githack.com/fiatjaf/glua/master/try.html and use your console.

how do I

  1. Return multiple values from a JavaScript function?

Return the special object {_glua_multi: []} with an array of the multiple values you want your function to return.

  1. Get values out from the Lua environment?

Call .runWithGlobals passing a function that takes the parameters from Lua and saves them to a JavaScript variable. It works.